/* ===== GLITTERS 360 DENTAL CARE - MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --primary: #1a4d3a;
  --primary-light: #2e7d5a;
  --primary-pale: #e8f4ef;
  --accent: #c9a84c;
  --accent-light: #f0d98a;
  --text-dark: #0f1f18;
  --text-mid: #3a4a42;
  --text-light: #7a8a80;
  --white: #ffffff;
  --off-white: #f7faf8;
  --border: #d4e2da;
  --shadow: 0 8px 40px rgba(26,77,58,0.12);
  --shadow-hover: 0 20px 60px rgba(26,77,58,0.22);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; }

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

a { text-decoration: none; color: inherit; }

.main-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}
.main-btn:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.main-btn.outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.main-btn.outline:hover {
  background: var(--white);
  color: var(--primary);
}
.main-btn.accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-dark);
}
.main-btn.accent:hover {
  background: transparent;
  color: var(--accent);
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.section-title span { color: var(--primary); }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary);
  padding: 10px 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar a { color: rgba(255,255,255,0.85); transition: var(--transition); }
.top-bar a:hover { color: var(--accent-light); }
.top-bar i { margin-right: 6px; color: var(--accent-light); }
.top-bar .social-icons { display: flex; gap: 12px; }
.top-bar .social-icons a {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  transition: var(--transition);
}
.top-bar .social-icons a:hover { background: var(--accent); color: var(--text-dark); }

/* ===== NAVBAR ===== */
.header_wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26,77,58,0.08);
}
.navbar { padding: 14px 0; }
.navbar-brand img { height: 56px; }
.navbar-nav .nav-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 16px;
  font-size: 0.92rem;
  transition: var(--transition);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { left: 16px; right: 16px; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary); }

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow);
  border-radius: var(--radius-sm);
  padding: 12px 0;
  margin-top: 8px;
}
.dropdown-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  padding: 10px 20px;
  color: var(--text-dark);
  transition: var(--transition);
}
.dropdown-item:hover { background: var(--primary-pale); color: var(--primary); padding-left: 28px; }

/* ===== HERO BANNER ===== */
.banner_wrapper {
  min-height: 92vh;
  background: linear-gradient(135deg, var(--primary) 0%, #0d3326 60%, #1a4d3a 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner_wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="40" fill="rgba(201,168,76,0.06)"/><circle cx="20" cy="80" r="60" fill="rgba(201,168,76,0.04)"/></svg>') no-repeat center/cover;
}
.hero-content { position: relative; z-index: 2; padding: 80px 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--accent-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-title .highlight { color: var(--accent-light); font-style: italic; }
.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat-item { text-align: left; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

.hero-image-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-img-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  max-width: 480px;
  width: 100%;
}
.hero-img-card img { width: 100%; height: 560px; object-fit: cover; display: block; }
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}
.hero-float-card.card-1 { bottom: 40px; left: -60px; }
.hero-float-card.card-2 { top: 40px; left: -40px; }
.hero-float-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--primary-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-float-card strong { display: block; color: var(--text-dark); font-weight: 600; }
.hero-float-card span { color: var(--text-light); font-size: 0.78rem; }

/* Video Play Button */
.play-btn-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.play-btn {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: none;
  transition: var(--transition);
  position: relative;
}
.play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  animation: pulse-ring 2s ease-out infinite;
}
.play-btn:hover { transform: scale(1.1); background: var(--accent); color: var(--white); }
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===== ABOUT SECTION ===== */
.about_wrapper { padding: 100px 0; background: var(--off-white); }
.about-img-stack { position: relative; }
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-img-badge .big-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}
.about-img-badge p { font-size: 0.78rem; margin-top: 4px; opacity: 0.85; }
.about-features { margin-top: 28px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(26,77,58,0.06);
  transition: var(--transition);
}
.feature-item:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--primary-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}
.feature-text h6 { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.feature-text p { font-size: 0.83rem; color: var(--text-light); line-height: 1.5; }

/* ===== SERVICES ===== */
.services_wrapper { padding: 100px 0; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: var(--primary-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: var(--white); }
.service-card h5 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 20px; }
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-link:hover { gap: 12px; }

/* ===== OUTREACH / GALLERY CARDS ===== */
.outreach_wrapper { padding: 100px 0; background: var(--off-white); }
.outreach-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 320px;
  box-shadow: var(--shadow);
}
.outreach-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.outreach-card:hover img { transform: scale(1.08); }
.outreach-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,31,24,0.9) 0%, rgba(15,31,24,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}
.outreach-card h5 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.outreach-card p { color: rgba(255,255,255,0.8); font-size: 0.84rem; line-height: 1.5; margin-bottom: 16px; }

/* ===== STATS ===== */
.counter {
  background: linear-gradient(135deg, var(--primary) 0%, #0d3326 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.counter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M 0 100 Q 50 0 100 100 Q 150 200 200 100" fill="none" stroke="rgba(201,168,76,0.08)" stroke-width="2"/></svg>') repeat;
}
.stat-box { text-align: center; position: relative; }
.stat-box .num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}
.stat-box p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  margin: auto;
}

/* ===== GALLERY ===== */
.gallery_wrapper { padding: 100px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-item.wide img { height: 300px; }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,77,58,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 1.8rem;
  color: var(--white);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ===== TESTIMONIALS ===== */
.testimonials_wrapper { padding: 100px 0; background: var(--off-white); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.quote-icon { font-size: 2.5rem; color: var(--primary-pale); font-family: serif; line-height: 1; margin-bottom: 16px; }
.testimonial-card p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.9rem; }
.author-info span { font-size: 0.78rem; color: var(--text-light); }
.stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 12px; }

/* ===== PRICING ===== */
.price_wrapper { padding: 100px 0; }
.price-card {
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 2px solid var(--border);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  background: var(--white);
}
.price-card.featured {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.price-card.featured h5,
.price-card.featured p { color: rgba(255,255,255,0.9); }
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--text-dark);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.price-card:hover:not(.featured) { border-color: var(--primary); transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.price-icon {
  width: 72px; height: 72px;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  color: var(--primary);
}
.price-card.featured .price-icon { background: rgba(255,255,255,0.15); color: var(--white); }
.price-card h5 { font-size: 1.15rem; margin-bottom: 12px; }
.price-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }
.price-features { list-style: none; margin-bottom: 24px; }
.price-features li {
  font-size: 0.85rem;
  padding: 6px 0;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-card.featured .price-features li { color: rgba(255,255,255,0.8); }
.price-features li i { color: var(--accent); font-size: 0.8rem; }

/* ===== BLOG ===== */
.blog_wrapper { padding: 100px 0; background: var(--off-white); }
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.blog-img { height: 220px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-content { padding: 24px; }
.blog-tag {
  display: inline-block;
  background: var(--primary-pale);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-content h5 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-content p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 16px; font-size: 0.78rem; color: var(--text-light); }
.blog-meta i { color: var(--accent); }

/* ===== APPOINTMENT SECTION ===== */
.appointment_wrapper { padding: 100px 0; background: var(--primary); position: relative; overflow: hidden; }
.appointment_wrapper::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
}
.appointment_wrapper .section-title { color: var(--white); }
.appointment_wrapper .section-label { color: var(--accent-light); }
.appointment_wrapper p { color: rgba(255,255,255,0.75); }
.appt-form { background: var(--white); border-radius: var(--radius); padding: 40px; }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26,77,58,0.1);
  outline: none;
}
.form-label { font-weight: 500; font-size: 0.88rem; margin-bottom: 6px; color: var(--text-mid); }

/* ===== PARTNERS ===== */
.partners_wrapper { padding: 60px 0; background: var(--off-white); border-top: 1px solid var(--border); }
.partner-item { opacity: 0.5; filter: grayscale(1); transition: var(--transition); }
.partner-item:hover { opacity: 1; filter: grayscale(0); }
.partner-item img { height: 40px; object-fit: contain; }

/* ===== FOOTER ===== */
.footer_wrapper { background: var(--text-dark); padding: 80px 0 0; color: rgba(255,255,255,0.75); }
.footer_wrapper h5 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 20px; }
.footer_wrapper p { font-size: 0.87rem; line-height: 1.7; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '→'; font-size: 0.75rem; color: var(--accent); transition: var(--transition); }
.footer-links a:hover { color: var(--accent-light); padding-left: 6px; }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 0.87rem;
  list-style: none;
}
.footer-contact a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-contact a:hover { color: var(--accent-light); }
.footer-contact i { color: var(--accent); width: 20px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  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);
}
.footer-social a:hover { background: var(--accent); color: var(--text-dark); transform: translateY(-3px); }
.newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--accent); }
.newsletter-form button {
  background: var(--accent);
  color: var(--text-dark);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--accent-light); }
.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: var(--accent); }

/* ===== VIDEO MODAL ===== */
.modal-backdrop { background: rgba(0,0,0,0.8); }
.video-modal .modal-dialog { max-width: 440px; margin: auto; }
.video-modal .modal-content {
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--text-dark);
}
.video-modal .modal-header {
  background: var(--primary);
  border: none;
  padding: 16px 20px;
}
.video-modal .modal-title { color: var(--white); font-size: 0.95rem; }
.video-modal .btn-close { filter: invert(1); }
.video-modal .modal-body { padding: 0; }
.video-modal iframe { width: 100%; height: 400px; display: block; border: none; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  font-size: 1.4rem;
  color: var(--white);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 12px 32px rgba(37,211,102,0.55); color: var(--white); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0d3326 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto 24px; }
.breadcrumb { justify-content: center; }
.breadcrumb-item a { color: var(--accent-light); }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== CONTACT PAGE ===== */
.contact_wrapper { padding: 100px 0; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.contact-icon {
  width: 64px; height: 64px;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin: 0 auto 16px;
}
.contact-info-card h6 { font-family: 'DM Sans', sans-serif; font-weight: 700; margin-bottom: 8px; }
.contact-info-card p, .contact-info-card a { color: var(--text-light); font-size: 0.88rem; }

/* ===== TEAM ===== */
.team_wrapper { padding: 100px 0; }
.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--white);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.team-img { height: 280px; overflow: hidden; position: relative; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-img img { transform: scale(1.06); }
.team-social {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,77,58,0.9), transparent);
  padding: 20px 16px 16px;
  display: flex;
  gap: 10px;
  transform: translateY(100%);
  transition: var(--transition);
}
.team-card:hover .team-social { transform: translateY(0); }
.team-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  transition: var(--transition);
}
.team-social a:hover { background: var(--accent); color: var(--text-dark); }
.team-info { padding: 20px; text-align: center; }
.team-info h5 { font-size: 1rem; margin-bottom: 4px; }
.team-info span { font-size: 0.82rem; color: var(--accent); font-weight: 500; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-content { padding: 60px 0; }
  .hero-img-card { max-width: 340px; }
  .hero-img-card img { height: 400px; }
  .hero-float-card.card-1 { left: -10px; bottom: 20px; }
  .hero-float-card.card-2 { display: none; }
  .about-img-badge { right: 0; bottom: -10px; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 2.4rem; }
  .hero-stats { gap: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item img, .gallery-item.wide img { height: 200px; }
  .top-bar .top-bar-right { display: none; }
  .hero-image-wrap { margin-top: 40px; justify-content: center; }
  .stat-divider { display: none; }
}
@media (max-width: 575px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .main-btn { width: 100%; justify-content: center; }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
