/* =========================================
   Navaneeth Dental Clinic - Main Stylesheet
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --primary: #1565C0;
  --primary-dark: #0D47A1;
  --primary-light: #42A5F5;
  --accent: #00ACC1;
  --accent-light: #E0F7FA;
  --white: #ffffff;
  --off-white: #F8FBFF;
  --gray-100: #F3F6FC;
  --gray-200: #E8EEF8;
  --gray-400: #9EB3CC;
  --gray-600: #5A7597;
  --gray-800: #1E3A5F;
  --text: #1A2B42;
  --text-light: #4A6278;
  --shadow-sm: 0 2px 12px rgba(21, 101, 192, 0.08);
  --shadow-md: 0 8px 32px rgba(21, 101, 192, 0.14);
  --shadow-lg: 0 20px 60px rgba(21, 101, 192, 0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--gray-800);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.text-center {
  text-align: center;
}

.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.35);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
}

.btn-accent:hover {
  background: #00838F;
  border-color: #00838F;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 172, 193, 0.35);
}

/* NAVBAR */
.navbar-custom {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(21, 101, 192, 0.08);
  padding: 0;
  transition: var(--transition);
  border-bottom: 1px solid var(--gray-200);
}

.navbar-custom.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
}

.brand-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.brand-text-top {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.brand-text-bottom {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-link-custom {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text) !important;
  padding: 24px 14px !important;
  position: relative;
  transition: var(--transition);
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px 2px 0 0;
  transition: var(--transition);
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--primary) !important;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 80%;
}

.navbar-toggler {
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 6px 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* HERO */
.hero-section {

  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  background-image: linear-gradient(135deg, #0d48a1ab 0%, #1565c0bb 40%, #1976d273 70%, #00abc153 100%), url("/images/a2f370bb492685fb123ee3d0fb86037f.jpg");
  background-size: cover;
  background-position: center;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-blob-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 172, 193, 0.25) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.hero-blob-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  bottom: -80px;
  left: 5%;
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.18;
  margin-bottom: 1.2rem;
}

.hero-title span {
  color: #80DEEA;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: 2.2rem;
  font-weight: 300;
}

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

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 320px;
}

.hero-main-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  color: white;
}

.hero-tooth-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-card-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-float-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatCard 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
  top: -30px;
  right: -40px;
}

.hero-float-card.card-2 {
  bottom: -20px;
  left: -40px;
  animation-delay: 1.5s;
}

.float-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.float-card-icon.blue {
  background: var(--gray-100);
  color: var(--primary);
}

.float-card-icon.teal {
  background: var(--accent-light);
  color: var(--accent);
}

.float-card-label {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
}

.float-card-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* INFO BAR */
.info-bar {
  background: var(--primary-dark);
  padding: 16px 0;
}

.info-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  justify-content: center;
}

.info-bar-item i {
  color: var(--primary-light);
  font-size: 1rem;
}

/* SECTIONS */
section {
  padding: 90px 0;
}

.section-light {
  background: var(--off-white);
}

/* FEATURE CARDS */
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gray-100), var(--accent-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0 auto 1.2rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  transform: scale(1.1);
}

.feature-card h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  color: var(--gray-800);
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

/* SERVICE CARDS */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 0 0 4px 4px;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  height: 100%;
  border-radius: 4px 0 0 4px;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gray-100);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
}

.service-card h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-family: var(--font-body);
  color: var(--gray-800);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* ABOUT */
.about-img-main {
  border-radius: var(--radius);
  width: 100%;
  height: 420px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 4rem;
}

.about-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: white;
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.78rem;
  opacity: 0.85;
}

.about-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.about-check-list li i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.about-visual {
  position: relative;
}

/* COUNTERS */
.counter-section {
  background: var(--primary);
  padding: 70px 0;
}

.counter-card {
  text-align: center;
  color: white;
  padding: 20px;
}

.counter-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.counter-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* TESTIMONIALS */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gray-200);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.stars {
  color: #FFC107;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.author-tag {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1565C0 50%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 32px 32px;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

/* DOCTORS */
.doctor-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.doctor-img-wrap {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--accent-light) 100%);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.doctor-img-placeholder {
  font-size: 5rem;
  color: var(--gray-400);
}

.doctor-info {
  padding: 24px;
}

.doctor-info h5 {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-body);
  margin-bottom: 4px;
  color: var(--gray-800);
}

.doctor-spec {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.doctor-exp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.doctor-info p {
  font-size: 0.855rem;
  color: var(--text-light);
  margin: 0;
}

/* TECH */
.tech-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.tech-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
}

.tech-card:hover .tech-icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.tech-card h5 {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 0.5rem;
}

.tech-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* GALLERY */
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  height: 220px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 71, 161, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}

.gallery-placeholder {
  font-size: 2.5rem;
  color: var(--gray-400);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.gallery-placeholder span {
  font-size: 0.8rem;
  font-family: var(--font-body);
}

#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#lightbox.active {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 800px;
  width: 90%;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.lightbox-content-box {
  background: white;
  border-radius: var(--radius);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lightbox-content-box i {
  font-size: 4rem;
  color: var(--primary);
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 12px;
  font-size: 0.9rem;
}

/* BLOG */
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.8);
}

.blog-body {
  padding: 24px;
}

.blog-tag {
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--gray-800);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--gray-600);
}

.blog-meta i {
  color: var(--primary);
}

/* CONTACT */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-body h6 {
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.contact-info-body p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

.form-control-custom {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
  width: 100%;
  background: var(--white);
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.form-label-custom {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
  display: block;
}

.form-group-custom {
  margin-bottom: 18px;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--accent) 100%);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 32px 32px;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
}

.breadcrumb-custom span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.breadcrumb-custom span.current {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-sep {
  margin: 0 8px;
}

/* MODAL */
.modal-custom .modal-content {
  border-radius: var(--radius);
  border: none;
  box-shadow: var(--shadow-lg);
}

.modal-custom .modal-header {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius) var(--radius) 0 0;
  border: none;
  padding: 24px 28px;
}

.modal-custom .modal-title {
  color: white;
  font-family: var(--font-display);
}

.modal-custom .btn-close {
  filter: brightness(0) invert(1);
}

/* FLOATING BUTTONS */
.floating-whatsapp {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
  animation: pulse-green 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
  background: #1EB655;
  color: white;
  transform: scale(1.1);
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

#scrollTopBtn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: none;
  align-items: center;
  justify-content: center;
}

#scrollTopBtn.show {
  display: flex;
}

#scrollTopBtn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* FOOTER */
.footer {
  background: var(--gray-800);
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 0;
}

.footer-brand {
  margin-bottom: 1.2rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: white;
  font-weight: 700;
}

.footer-brand-tag {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-about {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--accent);
}

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

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 18px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

/* SERVICES DETAIL */
.service-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 40px 36px;
  margin-bottom: 28px;
  transition: var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 1.2rem;
}

.service-detail-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: white;
  flex-shrink: 0;
}

.service-detail-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.875rem;
  color: var(--text-light);
}

.benefits-list li i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

/* HOURS */
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.875rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  color: var(--gray-800);
  font-weight: 500;
}

.hours-time {
  color: var(--primary);
  font-weight: 600;
}

.hours-time.closed {
  color: #EF4444;
}

/* ANIMATIONS */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="1"] {
  transition-delay: 0.1s;
}

[data-delay="2"] {
  transition-delay: 0.2s;
}

[data-delay="3"] {
  transition-delay: 0.3s;
}

[data-delay="4"] {
  transition-delay: 0.4s;
}

[data-delay="5"] {
  transition-delay: 0.5s;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .nav-link-custom {
    padding: 12px 16px !important;
  }

  .nav-link-custom::after {
    display: none;
  }

  .hero-visual {
    display: none;
  }

  section {
    padding: 60px 0;
  }

  .about-badge-card {
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .hero-stats {
    gap: 1.5rem;
  }

  .info-bar {
    display: none;
  }

  .footer {
    padding: 50px 0 0;
  }

  .floating-whatsapp {
    bottom: 80px;
    right: 16px;
  }

  #scrollTopBtn {
    right: 16px;
    bottom: 16px;
  }
}