@import url("../fonts/font-awesome/css/font-awesome.css");

/* REMINDER: if I change anything on root I must to change it on variables.css too */
:root {
  --accent-color: #3b4757;
  --sec-color: #fff;
  --title-font: "Cormorant Garamond", serif;
  --subtitle-font: "Josefin Sans", serif;

  --accent-color-op1: rgba(59, 71, 87, 0.9);
  --accent-color-op2: rgba(59, 71, 87, 0.7);
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #000;
  background: #fff;
  font-weight: 300;
  width: 100vw;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Navigation */

/* nav {
  background-color: #1a1a1ad1 !important;
  backdrop-filter: blur(10px);
  color: white;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgb(36, 36, 36) !important;
}

.cus-nav-container {
  margin: 0 auto;
  margin-top: -10px;
  padding: 0.6rem 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.cus-logo {
  width: 330px;
  z-index: 1000;
}

.cus-menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: black;
  z-index: 1000;
}

.cus-nav-items {
  list-style: none;
  display: flex;
  gap: 2rem;
  z-index: 10;
  padding-top: 20px;
}

.cus-nav-items li {
  position: relative;
}

.cus-nav-items > li > a {
  text-decoration: none;
  color: rgb(245, 245, 245);
  padding: 0.5rem 0;
  display: block;
  font-size: 12px;
  font-weight: 300;
} */

.top-navbar {
  background: #1b1b1b;
  border-bottom: 7px solid #7f9d9d;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-brand img {
  height: 120px;
  width: auto;
}

.top-row {
  padding-inline: 12rem;
}

.logo-placeholder {
  height: 60px;
  width: 200px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
  border: 1px solid #ccc;
}

.contact-info {
  color: #666;
  font-size: 14px;
  text-align: right;
}

.contact-info .contact-item {
  margin-bottom: 5px;
}

.contact-info .contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  opacity: 0.7;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #8b8b73;
}

.book-btn {
  background: #8b8b73;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: #7a7a66;
  color: white;
  transform: translateY(-1px);
}

/* Mobile Styles */
@media (max-width: 991px) {
  .contact-info {
    text-align: left;
    margin-top: 10px;
  }

  .nav-menu {
    gap: 25px;
    margin: 15px 0;
  }

  .book-btn {
    margin-top: 10px;
  }
  .top-row {
    padding-inline: 1rem;
  }
}

@media (max-width: 767px) {
  .nav-menu {
    /* flex-direction: column;
    gap: 15px;
    align-items: flex-start; */
    flex-wrap: wrap;
  }
  .top-navbar {
    position: relative;
  }

  .contact-info {
    font-size: 13px;
  }

  .logo-placeholder {
    height: 50px;
    width: 180px;
    font-size: 11px;
  }
}

/* Demo content */
.demo-content {
  padding: 4rem 2rem;
  text-align: center;
  background: #f9f9f9;
}

.demo-content h1 {
  color: #333;
  margin-bottom: 2rem;
}
/* Hero Section */
.hero {
  height: 100vh;
  background: #000;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="400" height="300" fill="%23333"/><text x="200" y="150" text-anchor="middle" fill="%23666" font-family="Arial" font-size="18">HERO IMAGE PLACEHOLDER</text><text x="200" y="180" text-anchor="middle" fill="%23666" font-family="Arial" font-size="14">(Replace with dental office/doctor image)</text></svg>');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero .container {
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero .lead {
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.8;
}

.hero .description {
  font-size: 1.1rem;
  opacity: 0.7;
  font-weight: 300;
}

/* Buttons */
.btn-custom {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
  padding: 1rem 2.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.btn-custom:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-custom-white {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
  padding: 1rem 2.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.btn-custom-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* Section Styles */
section {
  padding: 8rem 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
}

.modal-body p {
  letter-spacing: 0;
}
/* Bio Section */
.bio {
  background: #f8f8f8;
}

.bio-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  font-weight: 300;
  padding-left: 6rem;
}

.bio-image {
  height: 100%;
  background: #ddd;
  background-image: url("images/1-home-whippedcream-circle.jpg");
  background-size: cover;
  background-position: center;
}

/* Services Section */
.services {
  background: #121212;
  padding-inline: 1rem;
}

#services .col-lg-4,
#services .col-md-6 {
  padding: 0.5rem;
}

.service-card {
  position: relative;
  height: 800px;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #2c2c2c;
  cursor: pointer;
  background: #333;
  background-size: cover;
  background-position: center;
}

.service-card.a2 {
  background-image: url("images/a2.jpg");
}
.service-card.a3 {
  background-image: url("images/a3.jpg");
}
.service-card.a1 {
  background-image: url("images/a1.jpg");
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 0;
}

.service-title {
  color: #fff;
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0;
}

.service-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-content {
  opacity: 1;
}

.service-content h3 {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: #fff;
}

.service-content .service-subtitle {
  font-weight: 200;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.service-content p {
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin: 0;
}

/* GENERAL ANIMATIONS********************************** */
.custom-animation {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.custom-animation.animate {
  opacity: 1;
  transform: translateY(0);
}
/* GENERAL ANIMATIONS********************************** */

/* Reviews Section */
.reviews {
  background: #000;
  color: #fff;
}

.reviews .section-title {
  color: #fff;
}

.reviews-image {
  height: 400px;
  background: #333;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="400" height="300" fill="%23333"/><text x="200" y="140" text-anchor="middle" fill="%23666" font-family="Arial" font-size="16">PATIENT TESTIMONIAL</text><text x="200" y="160" text-anchor="middle" fill="%23666" font-family="Arial" font-size="16">IMAGE PLACEHOLDER</text><text x="200" y="185" text-anchor="middle" fill="%23666" font-family="Arial" font-size="12">(Happy patients or office environment)</text></svg>');
  background-size: cover;
  background-position: center;
}

.review-card {
  padding: 2rem 0;
  border-bottom: 1px solid #333;
}

.review-card:last-child {
  border-bottom: none;
}

.stars {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2em;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 300;
}

.reviewer {
  font-weight: 500;
  opacity: 0.7;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.carousel-item {
  padding: 2rem;
  border-radius: 9px;
}

/* Contact Section */

.contact-image {
  height: 500px;
  background: #ddd;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="400" height="300" fill="%23ddd"/><text x="200" y="140" text-anchor="middle" fill="%23999" font-family="Arial" font-size="16">OFFICE EXTERIOR/INTERIOR</text><text x="200" y="160" text-anchor="middle" fill="%23999" font-family="Arial" font-size="16">IMAGE PLACEHOLDER</text><text x="200" y="185" text-anchor="middle" fill="%23999" font-family="Arial" font-size="12">(Replace with office photos)</text></svg>');
  background-size: cover;
  background-position: center;
}

/* CTA Sections */
.cta-section {
  background: url(images/bg1.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 6rem 0;
}

/* Footer */
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 3rem 0;
}

.footer p {
  font-weight: 300;
  opacity: 0.7;
  font-size: 0.9rem;
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 1400px) {
  .bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    font-weight: 300;
    padding-left: 0;
  }
  .bio-text {
    width: 90%;
    margin-inline: auto;
  }
}
/* Mobile Responsiveness */
@media (max-width: 991px) {
  .hero h1 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  section {
    padding: 6rem 0;
  }
  .bio-text {
    padding-left: 1rem;
  }
  .services {
    padding-inline: 1rem;
  }
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  section {
    padding: 4rem 0;
  }

  .service-card {
    padding: 3rem 2rem;
    margin-bottom: 2rem;
  }

  .cta-section h3 {
    font-size: 2rem;
  }
}

/* FINANCING PAGE***********************  */
.overlay-bg.cus-bg1 {
  background: #151515;
  background: linear-gradient(
    90deg,
    rgba(1, 1, 1, 0.841) 0%,
    rgba(11, 11, 11, 0.78) 26%,
    rgba(255, 255, 255, 0) 45%
  );
}

.z10 {
  z-index: 10;
}

.pricing-img {
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
}

.alt-pricing-box {
  background-color: #f0f0f0bc;
  padding: 1.5rem;
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 220px;
  transition: all 250ms ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.alt-pricing-box a {
  text-decoration: none;
}
.alt-pricing-box:hover {
  background-color: #4b6a8a87;
}
.alt-pricing-box:hover p {
  color: white;
}

.pl-40 {
  padding-left: 40px;
}

@media (max-width: 991px) {
  .overlay-bg.cus-bg1 {
    background: #15151564;
  }
}
/* FINANCING PAGE***********************  */
