/* ======= GENERAL STYLES ======= */
:root {
  --primary-color: #e8711a;
  --secondary-color: #e8711a;
  --accent-color: #e8711a;
  --dark-color: #000000bf;
  --light-color: #f7fbff;
  --text-color: #435a6f;
  --light-text: #8da2b5;
  --white: #ffffff;
  --grey: #f4f7fa;
  --border-radius: 8px;
  --box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  /* 1rem = 10px */
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
  background-color: var(--white);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.4rem;
}

p {
  margin-bottom: 2rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

section {
  padding: 8rem 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  color: white;
  padding: 0.5rem 1.5rem;
  background-color: #4a2c2a85;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

/* ======= BUTTONS ======= */
.primary-btn,
.secondary-btn,
.appointment-btn,
.call-btn,
.all-services-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.2rem 2.8rem;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.primary-btn {
  background: linear-gradient(135deg, var(--dark-color), #194b57);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(0, 149, 255, 0.25);
}

.primary-btn:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 149, 255, 0.35);
  color: var(--white);
}

.secondary-btn {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 1rem 2.6rem;
}

.secondary-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.appointment-btn {
  background-color: #4a2c2a1c;
  color: var(--primary-color);
  padding: 0.8rem 1.6rem;
  margin-left: 1rem;
}

.appointment-btn:hover {
  background-color: var(--primary-color);
  color: var(--white) !important;
}

.call-btn {
  background-color: var(--white);
  color: var(--dark-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-left: 1.5rem;
}

.call-btn i {
  margin-right: 0.8rem;
  color: var(--primary-color);
}

.call-btn:hover {
  background-color: var(--grey);
  transform: translateY(-3px);
}

.all-services-btn {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--grey);
  color: var(--dark-color);
  border-radius: var(--border-radius);
  padding: 3rem;
}

.all-services-btn i {
  font-size: 3rem;
  color: var(--primary-color);
}

.all-services-btn:hover {
  background-color: rgba(0, 149, 255, 0.05);
  transform: translateY(-5px);
}

/* ======= HEADER & NAVIGATION ======= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.logo img {
  display: block;
  border-radius: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-item {
  margin-left: 3rem;
}

.nav-link {
  font-weight: 500;
  color: var(--dark-color);
  /* position: relative; */
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  /* background-color: var(--primary-color); */
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--secondary-color);
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--dark-color);
  transition: var(--transition);
}

/* ======= HERO SECTION ======= */
.hero {
  padding: 18rem 0 10rem;
  position: relative;
  background: #4a2c2a00;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
  background: #000000bf;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  color: #858586;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: var(--box-shadow);
  margin-bottom: 3.5rem;
}

.hero-badge i {
  color: var(--accent-color);
  margin-right: 1rem;
  font-size: 2rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-image {
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-image img {
  border-radius: 12px;
  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); */
  /* transform: perspective(800px) rotateY(-5deg); */
}

.hero-wave {
  /* position: absolute; */
  bottom: -10px;
  left: 0;
  width: 100%;
}

/* Hero Slider Styles */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--primary-gradient);
}

.hero-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.hero-slide.active {
  display: block;
  opacity: 1;
}

/* ======= SERVICES SECTION ======= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: stretch;
}

.service-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  /* background: linear-gradient(135deg, rgba(0, 149, 255, 0.1), rgba(42, 196, 234, 0.1)); */
  border-radius: 50%;
}

.service-icon i {
  font-size: 3.2rem;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-card p {
  color: var(--light-text);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.service-link i {
  margin-left: 0.8rem;
  transition: var(--transition);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ======= ABOUT SECTION ======= */
.about-section {
  background-color: #4a2c2a00;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.hero-content > *,
.about-content > *,
.content-cta > *,
.footer-map-cta > *,
.map-directions-bar > * {
  min-width: 0;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: 12px;
  box-shadow: var(--box-shadow);
}

.about-text {
  flex: 1;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
  align-items: stretch;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
}

.feature i {
  color: var(--accent-color);
  margin-right: 0;
  font-size: 1.8rem;
  flex-shrink: 0;
}

/* ======= WHY CHOOSE US SECTION ======= */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  align-items: stretch;
}

.advantage-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  color: var(--white);
}

.advantage-icon i {
  font-size: 2.8rem;
}

.advantage-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.advantage-card p {
  color: var(--light-text);
  margin-bottom: 0;
  flex-grow: 1;
}

/* ======= TESTIMONIALS SECTION ======= */
.testimonials-section {
  background-color: #4a2c2a00;
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  overflow: hidden;
  margin-bottom: 3rem;
}

.testimonial-slide {
  min-width: 100%;
  transition: var(--transition);
}

.testimonial-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow-wrap: anywhere;
}

.testimonial-card::after {
  content: '\f10e';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  font-size: 5rem;
  color: rgba(0, 149, 255, 0.05);
}

.testimonial-rating {
  margin-bottom: 2rem;
}

.testimonial-rating i {
  color: #FFD700;
  font-size: 1.8rem;
  margin-right: 0.5rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1.5rem;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.2rem;
  font-size: 1.8rem;
}

.author-info p {
  color: var(--light-text);
  margin-bottom: 0;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.testimonial-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-controls button:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  margin: 0 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(0, 149, 255, 0.2);
  margin: 0 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 30px;
  border-radius: 5px;
  background-color: var(--primary-color);
}

.testimonial-cta {
  text-align: center;
}

/* ======= CERTIFICATES SECTION ======= */
.certificate-section {
  background: linear-gradient(180deg, rgba(232, 113, 26, 0.06), rgba(255, 255, 255, 0));
  position: relative;
  overflow: hidden;
}

.certificate-slider {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
}

.certificate-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.certificate-slide.active {
  display: block;
  opacity: 1;
}

.certificate-card {
  background-color: var(--white);
  padding: 2.4rem;
  border-radius: 18px;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.certificate-card img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  background-color: #f8fafc;
  border-radius: 14px;
  padding: 1.2rem;
}

.certificate-caption {
  margin: 1.8rem 0 0;
  font-weight: 600;
  color: var(--dark-color);
}

.certificate-dots {
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  justify-content: center;
  margin-top: 2.4rem;
}

.certificate-dots .dot {
  background: rgba(232, 113, 26, 0.25);
}

.certificate-dots .dot.active {
  background: var(--primary-color);
}

/* ======= CONTENT PAGES ======= */
.content-page {
  background: linear-gradient(180deg, #fffaf6 0%, #ffffff 35%, #f7fbff 100%);
}

.page-hero {
  padding: 14rem 0 4rem;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(232, 113, 26, 0.12), transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(232, 113, 26, 0.1), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(26, 115, 232, 0.08), transparent 42%);
  pointer-events: none;
}

.page-hero-card {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 4.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(232, 113, 26, 0.12);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background: rgba(232, 113, 26, 0.12);
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.page-hero h1 {
  font-size: clamp(3rem, 5vw, 4.8rem);
  margin-bottom: 1.4rem;
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-color);
}

.page-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: rgba(74, 44, 42, 0.08);
  color: var(--dark-color);
  font-size: 1.4rem;
  font-weight: 600;
}

.page-content {
  padding: 0 0 6rem;
}

.page-layout {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.policy-card,
.sitemap-group,
.content-cta {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--box-shadow);
}

.policy-card h2,
.sitemap-group h2,
.content-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
}

.policy-card h3 {
  font-size: 2rem;
  margin: 2rem 0 1rem;
}

.policy-card p:last-child,
.policy-card ul:last-child,
.sitemap-group p:last-child {
  margin-bottom: 0;
}

.policy-list {
  margin: 1.6rem 0 0;
  padding-left: 2rem;
}

.policy-list li {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.content-note {
  margin-top: 1.8rem;
  padding: 1.8rem;
  border-left: 4px solid var(--primary-color);
  border-radius: 14px;
  background: rgba(232, 113, 26, 0.08);
}

.page-link {
  font-weight: 600;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.sitemap-grid-single {
  grid-template-columns: 1fr;
}

.sitemap-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-links li + li {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(67, 90, 111, 0.12);
}

.sitemap-links a {
  display: inline-block;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  overflow-wrap: anywhere;
}

.sitemap-links p {
  margin: 0;
  color: var(--light-text);
}

.content-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.content-cta p {
  margin: 0;
}

.content-cta-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ======= CTA SECTION ======= */
.cta-section {
  background: linear-gradient(135deg, #e8711a, #e8711a);
  color: var(--white);
  text-align: center;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMjUiIGN5PSIyNSIgcj0iMSIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjEpIiAvPjwvc3ZnPg==');
  opacity: 0.3;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  font-size: 3.6rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.cta-section .primary-btn {
  background-color: #910e0e;
  color: var(--light-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-section .primary-btn:hover {
  background-color: var(--grey);
  color: var(--primary-color);
}

/* ======= FOOTER ======= */
.footer {
  background-color: white;
  padding: 40px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  color: #e8711a;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #e86d1a;
}

.footer-section p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #1a73e8;
}

.office-hours {
  margin-top: 10px;
}

.office-hours p {
  margin-bottom: 5px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  text-align: center;
  width: 100%;
}

.footer-bottom p {
  color: #777;
  font-size: 14px;
}


/* ======= UTILITY CLASSES ======= */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mw-1000 {
  max-width: 1000px;
}

.mt-3 {
  margin-top: 1.5rem;
}

.d-inline-block {
  display: inline-block;
}

.text-decoration-none {
  text-decoration: none;
}

.footer-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #1a73e8;
}

.trust-stats-grid,
.faq-grid {
  align-items: stretch;
}

.faq-item summary {
  gap: 1.2rem;
}

.hero-badge,
.hero-cta,
.cta-buttons,
.content-cta-actions,
.footer-links {
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .footer-section {
    flex: 100%;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}

@media screen and (max-width: 480px) {
  .footer {
    padding: 30px 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}



/* ======= BACK TO TOP BUTTON ======= */
#backToTop {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

/* ======= RESPONSIVE STYLES ======= */
@media screen and (max-width: 1200px) {
  html {
    font-size: 60%;
  }

  .hero-content,
  .about-content {
    gap: 4rem;
  }
}

@media screen and (max-width: 992px) {
  html {
    font-size: 58%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .navbar {
    padding: 1.2rem 0;
  }

  .menu-toggle {
    display: block;
    z-index: 9999;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background-color: var(--white);
    width: 80%;
    height: 100vh;
    z-index: 999;
    padding-top: 10rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 1.5rem 0 1.5rem 3rem;
  }

  .nav-link {
    font-size: 2rem;
  }

  .appointment-btn {
    margin: 2rem 0 0 3rem;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-badge {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .about-content {
    flex-direction: column;
  }

  .about-text {
    text-align: center;
  }

  .about-features {
    justify-content: center;
  }

  .feature {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 56%;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .hero {
    padding: 16rem 0 8rem;
  }

  section {
    padding: 6rem 0;
  }

  .services-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    margin-top: 1rem;
  }

  .footer-bottom-links a {
    margin: 0 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .call-btn {
    margin-left: 0;
  }

  .service-card,
  .advantage-card,
  .testimonial-card {
    padding: 2.4rem 2rem;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-author img {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 576px) {
  html {
    font-size: 54%;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .feature {
    text-align: left;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .nav-menu {
    width: 100%;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-card::after {
    display: none;
  }

  .hero-badge,
  .hero-cta .primary-btn,
  .hero-cta .secondary-btn,
  .content-cta-actions .primary-btn,
  .content-cta-actions .secondary-btn,
  .footer-links a {
    width: 100%;
    justify-content: center;
  }

  #backToTop {
    width: 40px;
    height: 40px;
    bottom: 2rem;
    right: 2rem;
  }
}

/* ======= ANIMATION EFFECTS ======= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text,
.hero-image,
.section-header,
.about-image,
.about-text {
  animation: fadeIn 1s ease forwards;
}

.service-card,
.advantage-card {
  animation: fadeIn 0.5s ease forwards;
  animation-delay: calc(var(--i) * 0.1s);
  opacity: 0;
}

/* ======= JAVASCRIPT FUNCTIONALITY ======= */
#mobile-menu.active~.nav-menu {
  left: 0;
}

.sticky-header {
  padding: 1rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hide-header {
  transform: translateY(-100%);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-slide:first-child {
  display: block;
}

.testimonial-controls button {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
}

.testimonial-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.testimonial-dots .dot.active {
  background: #333;
}

/* Ensure the logo is always visible */
.logo {
  position: relative;
  z-index: 1000;
  /* Higher z-index to keep it above the menu */
}

/* When the menu is active */
.nav-menu.active {
  left: 0;
}

/* Ensure the menu toggle button does not overlap the logo */
.menu-toggle {
  position: relative;
  z-index: 1001;
  /* Higher than the nav-menu */
}

/* Google Reviews Slide */
.reviews-content {
  padding: 2rem 0;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  font-size: 1.2rem;
}

.google-rating .fab.fa-google {
  color: #4285F4;
  font-size: 2rem;
}

.rating-stars {
  color: #FBC02D;
}

.rating-number {
  font-weight: 600;
  color: var(--text-dark);
}

.review-count {
  color: var(--text-muted);
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #4285F4;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.google-review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* Hero Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.55);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev {
  left: 16px;
}

.slider-arrow.next {
  right: 16px;
}

@media (max-width: 768px) {
  .slider-arrow {
    width: 38px;
    height: 38px;
    top: 53%;
  }

  .page-hero {
    padding: 12rem 0 3rem;
  }

  .page-hero-card,
  .policy-card,
  .sitemap-group,
  .content-cta {
    padding: 2.2rem;
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .content-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .certificate-card {
    padding: 1.6rem;
  }

  .certificate-card img {
    max-height: 480px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .google-rating {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
  }
}

.appointment-btn {
  background-color: #ffbb00;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
}

.whatsapp-btn {
  background-color: #25D366;
  margin-left: 10px;
}

.whatsapp-btn i {
  margin-right: 5px;
}

.appointment-btn:hover,
.whatsapp-btn:hover {
  background-color: #f0ac2e;
  color: white;
  text-decoration: none;
}

/* ======= TRUST STATS BAR ======= */
.trust-stats-section {
  background: linear-gradient(135deg, #4a2c2a, #6b3a37);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.trust-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMSIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvc3ZnPg==');
  opacity: 0.5;
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.trust-stat-item {
  text-align: center;
  color: var(--white);
}

.trust-stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #e8711a;
}

.trust-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 4.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.trust-stat-label {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ======= FLOATING CTA BUTTONS ======= */
.floating-cta {
  position: fixed;
  bottom: 9rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 9999;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(1.5rem);
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--white);
  font-size: 2.4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: visible;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
  color: var(--white);
}

.floating-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  animation: floatingPulse 2s ease-in-out infinite;
}

.floating-call {
  background: linear-gradient(135deg, #e8711a, #d4650f);
}

.floating-btn-label {
  position: absolute;
  right: 65px;
  background: var(--white);
  color: var(--dark-color);
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-size: 1.3rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.floating-btn:hover .floating-btn-label {
  opacity: 1;
}

@keyframes floatingPulse {

  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);
  }
}

/* ======= FAQ SECTION ======= */
.faq-section {
  background-color: var(--grey);
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.faq-item[open] {
  border-color: var(--primary-color);
  box-shadow: 0 5px 25px rgba(232, 113, 26, 0.12);
}

.faq-item summary {
  padding: 2rem 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--dark-color);
  list-style: none;
  user-select: none;
  transition: background-color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background-color: rgba(232, 113, 26, 0.03);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
}

.faq-question i {
  color: var(--primary-color);
  font-size: 1.8rem;
  flex-shrink: 0;
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 113, 26, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  background: var(--primary-color);
  color: var(--white);
}

.faq-answer {
  padding: 0 2.5rem 2rem;
  color: var(--text-color);
  line-height: 1.8;
  font-size: 1.5rem;
  animation: faqSlideDown 0.3s ease;
}

.faq-answer p {
  margin-bottom: 1rem;
}

.faq-answer a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

@keyframes faqSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======= FOOTER ENHANCEMENTS ======= */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232, 113, 26, 0.1);
  color: #e8711a;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #e8711a;
  color: white;
  transform: translateY(-3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: #e8711a;
  font-size: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: #e8711a;
}

.footer-map {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0 20px;
}

.footer-tagline {
  color: #e8711a;
  font-weight: 600;
  font-size: 13px;
  margin-top: 5px;
}

/* ======= RESPONSIVE - NEW COMPONENTS ======= */
@media screen and (max-width: 992px) {
  .trust-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .floating-btn-label {
    display: none;
  }
}

/* ======= MOBILE STICKY BOTTOM CTA BAR ======= */
.mobile-sticky-bar {
  display: none;
  /* Hidden on desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  padding: 0;
}

.mobile-sticky-bar .mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 0;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.2s ease;
  flex: 1;
  border: none;
  position: relative;
}

.mobile-sticky-bar .mobile-bar-btn i {
  font-size: 1.8rem;
}

.mobile-sticky-bar .mobile-bar-btn span {
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

.mobile-bar-call {
  background: linear-gradient(135deg, #e8711a, #d4650f);
  color: white !important;
}

.mobile-bar-call:hover {
  background: linear-gradient(135deg, #d4650f, #c55a0a);
  color: white !important;
}

.mobile-bar-whatsapp {
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: white !important;
}

.mobile-bar-whatsapp:hover {
  background: linear-gradient(135deg, #1ebe5d, #17a34a);
  color: white !important;
}

.mobile-bar-book {
  background: linear-gradient(135deg, #4a2c2a, #6b3a37);
  color: white !important;
}

.mobile-bar-book:hover {
  background: linear-gradient(135deg, #5c3533, #7d4542);
  color: white !important;
}

/* WhatsApp button pulse glow on mobile bar */
.mobile-bar-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(37, 211, 102, 0.15);
  animation: mobileBarPulse 2.5s ease-in-out infinite;
}

@keyframes mobileBarPulse {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

/* ======= SMART STICKY HEADER ======= */
#header.header-scrolled {
  padding: 0;
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.1);
}

#header.header-scrolled .navbar {
  padding: 0.8rem 0;
}

#header.header-scrolled .logo img {
  height: 45px;
  width: auto;
  transition: height 0.3s ease;
}

#header.header-hidden {
  transform: translateY(-100%);
}

@media screen and (max-width: 768px) {
  .trust-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .trust-stat-number {
    font-size: 3.2rem;
  }

  .trust-stat-label {
    font-size: 1.2rem;
  }

  /* Hide desktop floating circles on mobile — bottom bar takes over */
  .floating-cta {
    display: none !important;
  }

  /* Show the mobile sticky bar */
  .mobile-sticky-bar {
    display: flex;
  }

  /* Add bottom padding so content isn't hidden behind the mobile bar */
  body {
    padding-bottom: 62px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 2.2rem;
  }

  .faq-item summary {
    padding: 1.5rem 1.8rem;
    font-size: 1.5rem;
  }

  .faq-answer {
    padding: 0 1.8rem 1.5rem;
    font-size: 1.4rem;
  }

  /* Back to top above the mobile bar */
  #backToTop {
    bottom: 8rem;
    right: 2rem;
  }
}

@media screen and (max-width: 576px) {
  .trust-stats-section {
    padding: 3rem 0;
  }

  .trust-stat-number {
    font-size: 2.8rem;
  }

  #backToTop {
    bottom: 8rem;
    right: 1.5rem;
  }

  .mobile-sticky-bar .mobile-bar-btn span {
    font-size: 0.95rem;
  }

  .mobile-sticky-bar .mobile-bar-btn i {
    font-size: 1.6rem;
  }
}

/* ======= AEO: ANSWER BOX (Featured Snippet Optimized) ======= */
.aeo-answer-box {
  max-width: 850px;
  margin: 3rem auto;
  background: linear-gradient(135deg, #fffbf0, #fff8e8);
  border: 2px solid #e8711a;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(232, 113, 26, 0.08);
  position: relative;
}

.aeo-answer-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #e8711a, #d4650f);
  border-radius: 16px 0 0 16px;
}

.aeo-answer-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 2rem 2.5rem 1.2rem;
  border-bottom: 1px solid rgba(232, 113, 26, 0.12);
  background: rgba(232, 113, 26, 0.04);
}

.aeo-answer-header i {
  color: #e8711a;
  font-size: 2.2rem;
  flex-shrink: 0;
}

.aeo-answer-header h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.4;
}

.aeo-answer-body {
  padding: 1.5rem 2.5rem;
}

.aeo-answer-body p {
  font-size: 1.55rem;
  line-height: 1.85;
  color: var(--text-color);
  margin-bottom: 1.2rem;
}

.aeo-answer-body p:last-child {
  margin-bottom: 0;
}

.aeo-answer-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.aeo-answer-list li {
  position: relative;
  padding-left: 2.4rem;
  font-size: 1.45rem;
  line-height: 1.7;
  color: var(--text-color);
}

.aeo-answer-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  color: #e8711a;
  font-weight: 700;
  font-size: 1.5rem;
}

.aeo-answer-source {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.5rem;
  background: rgba(232, 113, 26, 0.06);
  border-top: 1px solid rgba(232, 113, 26, 0.1);
  font-size: 1.2rem;
  color: #888;
}

.aeo-answer-source i {
  color: #25d366;
  font-size: 1.3rem;
}

.aeo-answer-source strong {
  color: var(--dark-color);
}

/* AEO Answer Box Responsive */
@media screen and (max-width: 768px) {
  .aeo-answer-box {
    margin: 2rem 1rem;
    border-radius: 12px;
  }

  .aeo-answer-header {
    padding: 1.5rem 1.8rem 1rem;
    gap: 1rem;
  }

  .aeo-answer-header h3 {
    font-size: 1.55rem;
  }

  .aeo-answer-body {
    padding: 1.2rem 1.8rem;
  }

  .aeo-answer-body p {
    font-size: 1.4rem;
  }

  .aeo-answer-list li {
    font-size: 1.35rem;
  }

  .aeo-answer-source {
    padding: 0.8rem 1.8rem;
    font-size: 1.1rem;
  }
}

/* ======= FOOTER MAP + GET DIRECTIONS CTA ======= */
.footer-map-section {
  margin-top: 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(232, 113, 26, 0.15);
}

.footer-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.footer-map-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.4rem 2rem;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.footer-map-info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
  min-width: 0;
}

.footer-map-info>i {
  color: #e8711a;
  font-size: 2rem;
  flex-shrink: 0;
}

.footer-map-info strong {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.footer-map-info span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.2rem;
  line-height: 1.4;
}

.footer-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.4rem;
  background: linear-gradient(135deg, #e8711a, #d4650f);
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  border-radius: 12px;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  box-shadow: 0 6px 20px rgba(232, 113, 26, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.footer-directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 113, 26, 0.5);
}

.footer-directions-btn i {
  font-size: 1.5rem;
}

/* ======= CONTACT PAGE MAP DIRECTIONS BAR ======= */
.map-directions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 1.4rem 2rem;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 0 0 22px 22px;
}

.map-directions-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.map-directions-info>i {
  color: #e8711a;
  font-size: 2.2rem;
  flex-shrink: 0;
}

.map-directions-info strong {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.map-directions-info span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
  line-height: 1.5;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 2.8rem;
  background: linear-gradient(135deg, #e8711a, #d4650f);
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  border-radius: 14px;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  box-shadow: 0 8px 24px rgba(232, 113, 26, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.directions-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 113, 26, 0.55);
}

.directions-btn i {
  font-size: 1.6rem;
}

/* Map + Directions Responsive */
@media screen and (max-width: 768px) {

  .footer-map-cta,
  .map-directions-bar {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
  }

  .footer-map-info,
  .map-directions-info {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .footer-map-info>i,
  .map-directions-info>i {
    font-size: 1.8rem;
  }

  .footer-directions-btn,
  .directions-btn {
    width: 100%;
    justify-content: center;
    padding: 1.2rem 2rem;
    font-size: 1.4rem;
  }

  .footer-map iframe {
    height: 220px;
  }
}
