@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --black: #000000;
  --ink: #062F4F;
  --posy: #813772;
  --embers: #B82601;
  --white: #ffffff;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  background-color: var(--black);
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* button styles */
.btn-glass {
    background-color: rgba(30, 30, 30, 0.7); /* Fallback */
}

@supports (backdrop-filter: blur(10px)) {
    .btn-glass {
        background-color: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}


/* Header Styles */
header {
    position: fixed;
    background-color: transparent;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    height: 80px;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.9) !important;
    padding: 10px 0 !important;
    height: 75px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    width: 100%;
}

.logo {
    height: 60px;
    display: flex;
    align-items: center;
    margin-right: auto;
}

.logo img {
    height: 140px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    margin-left: 0;
}

nav {
    margin-left: auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 100;
    text-transform: lowercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.nav-item.dropdown > .nav-link::after {
  content: "▾";
  margin-left: 5px;
  font-size: 0.9rem;
}

/* Dropdown Panel Styles */
.dropdown-panel {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--black);
    color: var(--white);
    padding: 30px 0;
    display: none;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 1px solid #333;
    max-height: 0;
    overflow: hidden;
    transition: none;
    opacity: 0;
}

.nav-item.dropdown.active .dropdown-panel {
    display: block;
    max-height: 500px;
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.3s ease 0.1s;
}

header.scrolled .dropdown-panel {
    top: 60px;
}

.dropdown-panel-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
}

.dropdown-panel-left {
    flex: 0 0 300px;
}

.dropdown-panel-right {
    flex: 1;
}

.dropdown-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 5px;
    margin-top: 20px;
}

.services-columns {
    display: flex;
    gap: 40px;
}

.services-columns > div {
    flex: 1;
}

.services-columns h4 {
    color: var(--posy);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.problems-list {
    columns: 2;
    column-gap: 40px;
}

.problems-list li {
    break-inside: avoid;
    margin-bottom: 10px;
}

.dropdown-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.dropdown-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-panel li {
    margin-bottom: 10px;
}

.dropdown-panel a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.dropdown-panel a:hover {
    color: var(--posy);
}

.dropdown-panel-close {
    position: absolute;
    top: 10px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.btn-schedule {
    background-color: var(--embers);
    border: none;
    color: var(--white);
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 3px;
    text-transform: lowercase;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-schedule:hover {
    background-color: var(--posy);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    color: var(--white);
    margin-top: 100px;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--embers);
    font-weight: 500;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
}

.hero-phone {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--white);
    border-radius: 30px;
    transition: all 0.3s;
}

.hero-phone:hover {
    background-color: var(--white);
    color: var(--black);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--black);
    color: var(--white);
}

.container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
}

.about-content-wrapper {
    display: flex;
    width: 100%;
}

.about-left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
    padding-right: 30px;
    border-right: 2px solid var(--posy);
    align-self: flex-start;
    /* Remove this line: font-family: 'Arial', sans-serif; */
}

.about-title span {
    color: var(--posy);
}

.about-text-content {
    max-width: 500px;
    padding-left: 30px;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-transform: none;
    text-align: left;
    white-space: pre-line;
    font-weight: 400;
    letter-spacing: 0.3px;
    font-family: 'Arial', sans-serif;
}

.btn-meet-us {
    background-color: transparent;
    border: 2px solid var(--posy);
    color: var(--posy);
    padding: 10px 30px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 3px;
    text-transform: lowercase;
    font-size: 1.1rem;
    transition: all 0.3s;
    margin-top: 10px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
}

.btn-meet-us:hover {
    background-color: var(--posy);
    color: var(--black);
}

.dentist-images {
    display: flex;
    gap: 30px;
    flex: 0 0 40%;
    align-items: flex-start;
    margin-top: 20px;
}

.dentist-img-container {
    width: 250px;
    height: 380px;
    border-radius: 5px;
    overflow: hidden;
    border: 0.5px solid var(--posy);
    transition: transform 0.3s ease;
}

.dentist-img-container:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(129, 55, 114, 0.3);
}

.dentist-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* It's All in the Details Section */
.details-section {
    padding: 100px 0;
    background-color: var(--white);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.details-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    position: relative;
    min-height: 500px;
}

.details-image {
    flex: 0 0 55%;
    position: relative;
}

.details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    position: relative;
    text-align: left;
    margin-left: 0;
}

.details-content {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    background-color: var(--white);
    padding: 60px;
    z-index: 2;
}

.details-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: var(--black);
    font-family: 'Arial', sans-serif;
}

.details-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
    color: var(--black);
    padding-left: 25px;
}

.details-list {
    list-style: none;
    margin-bottom: 30px;
}

.details-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--black);
}

.details-list li::before {
    content: ">>";
    padding-left: 15px;
    position: absolute;
    left: 0;
    color: var(--embers);
    font-weight: bold;
}

.details-btn {
    background-color: var(--embers);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    margin-top: 20px;
}

.details-btn:hover {
    background-color: var(--white);
    border: 2px solid var(--embers);
    color: var(--embers);
}

/* Dental Implants CTA Section */
.implants-cta {
    position: relative;
    padding: 120px 0;
    color: var(--black);
    text-align: center;
    overflow: hidden;
}

.implants-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/implantsbackground.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.implants-content-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 90px;
    background-color: var(--white);
    position: relative;
    opacity: 0.8;
    box-shadow: 0 2px 18px 0 rgb(0 0 0 / .3);
    z-index: 10 !important;
}

.implants-title {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.1;
    text-transform: lowercase;
    letter-spacing: 1px;
    margin-bottom: 2.5px;
    color: var(--black);
}

.implants-subtitle {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: lowercase;
    margin-bottom: 30px;
    color: var(--black);
}

.implants-content {
    max-width: 600px;
    margin: 0 auto;
    font-weight: 150;
}

.implants-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--black);
}

.btn-schedule-implants {
    background-color: var(--embers);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s;
    border: none;
}   

.btn-schedule-implants:hover {
    background-color: var(--white);
    color: var(--embers);
    border: 2px solid var(--black);
}

/* Invisalign Smile Preview Section */
.invisalign-section {
    padding: 50px 0;
    background-color: var(--posy);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.invisalign-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.invisalign-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.invisalign-title span {
    color: var(--black);
}

.invisalign-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--white);
    font-weight: 300;
}

.invisalign-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
    text-align: left;
}

.invisalign-steps ol {
    flex: 1;
    padding-left: 30px;
    font-size: 1.2rem;
    line-height: 2;
    list-style-position: outside;
}

.invisalign-steps li {
    margin-bottom: 15px;
    position: relative;
    color: var(--white);
}

.qr-code-container {
    flex: 0 0 250px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    margin-left: 40px;
}

.qr-code {
    width: 100%;
    height: auto;
}

.btn-schedule-invisalign {
    background-color: var(--black);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s;
}   

.btn-schedule-invisalign:hover {
    background-color: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
}

/* Excellence in Implant Dentistry Section */
.implant-section {
    padding: 100px 0;
    background-color: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.implant-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    position: relative;
    min-height: 500px;
}

.implant-video {
    flex: 0 0 55%;
    position: relative;
}

.implant-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.implant-video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.implant-content {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 60px;
    z-index: 2;
}

.implant-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: lowercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: var(--white);
}

.implant-title span {
    color: var(--posy);
}

.implant-text {
    margin-bottom: 30px;
}

.implant-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--white);
}

/* Routine Care Sections */
.routine-sections-wrapper {
  overflow: hidden;
}

.routine-heading {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--black);
    text-align: center;
    width: 100%;
    position: relative;
}

.routine-main-content {
    text-align: left;
}

.routine-content h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: lowercase;
    letter-spacing: 1px;
    color: var(--black);
}

.routine-content h2 span {
    color: var(--posy);
}

.routine-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--black);
}

.routine-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background-image: url('images/marble-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.routine-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  position: relative;
  z-index: 2;
}

.routine-content {
  flex: 0 0 50%;
  padding-right: 60px;
  color: var(--black);
}

.routine-image-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  margin-right: calc((100vw - 100%) / -2);
}

.routine-image-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  margin-left: calc((100vw - 100%) / -2);
}

.routine-image-right img,
.routine-image-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.routine-section.alternate .routine-content {
  margin-left: auto;
  padding-left: 60px;
  padding-right: 0;
}

.routine-btn {
  background: transparent;
  border: 2px solid var(--embers);
  color: var(--embers);
  padding: 12px 30px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 3px;
  text-transform: lowercase;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.routine-btn:hover {
  background-color: var(--embers);
  color: var(--white);
}

/* Services Gallery Section */
.services-gallery-section {
    padding: 60px 20px; /* Adjust padding as needed */
    background-image: url('images/services-bg.png');
    color: var(--white);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 0 auto 60px;
    text-transform: lowercase;
    letter-spacing: 1px;
    color: var(--black);
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
}

.services-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1400px; /* Or whatever maximum width you prefer */
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 20px;
    position: relative;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image-container img {
    transform: scale(1.35);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 1px;
    color: var(--white);
    transition: color 0.3s ease;
    margin: auto 0;
    padding: 0 10px;
}

.service-card:hover h3 {
    color: var(--posy);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .service-image-container {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .services-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

/* Split Payment Options Section */
.payment-insurance-section {
  background-color: whitesmoke;
  padding: 50px 20px;
}

.payment-insurance-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid #3c7a89;
  border-radius: 25px;
  overflow: hidden;
}

.payment-left {
  flex: 1;
  background-color: whitesmoke;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #316b7c;
}

.payment-icon img {
  width: 40px;
  margin-bottom: 20px;
}

.paying-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 10px;
}

.payment-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.payment-text {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 400px;
}

.insurance-right {
  flex: 1;
  background-color: #B82601;
  padding: 60px 40px;
  color: #ffffff;
  position: relative;
}

.insurance-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.insurance-description {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 450px;
}

.insurance-graphic {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 120px;
}

.insurance-graphic img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .payment-insurance-container {
    flex-direction: column;
  }

  .insurance-graphic {
    position: static;
    margin-top: 40px;
  }
}

.testimonial-carousel-section {
  background-color: #ffffff;
}

.testimonial-carousel-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 400px;
}

.testimonial-carousel-box {
  flex: 1;
  background-color: #000;
  color: #fff;
  position: relative;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  text-align: center;
}

.testimonial-slide.active {
  display: block;
}

.quote-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
}

.testimonial-nav button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.testimonial-nav button:hover {
  color: #316b7c;
}

.testimonial-static-box {
  flex: 1;
  background-image: url('images/marble-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #000;
}

.testimonial-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: lowercase;
}

.testimonial-subheading {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 20px;
  text-transform: lowercase;
}

.testimonial-link {
  font-size: 1.1rem;
  color: #316b7c;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #316b7c;
  width: fit-content;
}

.testimonial-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-carousel-container {
    flex-direction: column;
  }

  .testimonial-carousel-box,
  .testimonial-static-box {
    padding: 40px;
  }

  .testimonial-nav {
    bottom: 20px;
  }
}


/* Patient Lifetime Section */
.patient-lifetime-section {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  z-index: 1;
  background-color: #f5f3ed; /* Background for right side */
}


.patient-image-block {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.patient-image-block img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


.patient-curve-bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background-color: #bbb;
  border-top-right-radius: 100% 200px;
  border-bottom-right-radius: 100% 200px;
  z-index: 0;
}

.patient-lifetime-container {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    position: relative;
    z-index: 2;
}

.patient-text-block {
    flex: 1;
    max-width: 600px;
}

.patient-title {
  font-size: 3rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 40px;
  line-height: 1.2;
  z-index: 2;
  position: relative;
}

.patient-quote-block {
  color: #7b4f00;
  margin-bottom: 40px;
  z-index: 2;
}

.quote-icon {
  font-size: 3rem;
  color: #000;
  margin-bottom: 10px;
}

.patient-quote {
  font-size: 1.2rem;
  line-height: 1.7;
}

.patient-author {
  font-weight: bold;
  margin-top: 10px;
  font-size: 1rem;
}

.patient-cta-button {
  background-color: #005f5d;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  display: inline-block;
  transition: all 0.3s;
}

.patient-cta-button:hover {
  background-color: #004544;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .patient-lifetime-container {
        flex-direction: column;
        text-align: center;
    }
    
    .patient-image-block {
        margin-top: 40px;
        order: 2;
    }
    
    .patient-text-block {
        order: 1;
    }
    
    .patient-curve-bg {
        width: 100%;
        height: 60%;
        top: auto;
        bottom: 0;
        border-radius: 0 0 100% 100%;
    }
}

@media (max-width: 768px) {
  .patient-curve-bg {
    width: 100%;
    height: 60%;
    top: auto;
    bottom: 0;
    border-radius: 0 0 100% 100%;
  }

  .patient-title {
    font-size: 2.2rem;
  }

  .patient-quote {
    font-size: 1.1rem;
  }

  .patient-cta-button {
    font-size: 0.95rem;
  }

  .patient-lifetime-container {
    flex-direction: column;
    text-align: center;
  }
}

/* Visit Us Section */
.visit-us-section {
  background-image: url('images/visit-bg.jpg');
  padding: 100px 20px;
  background-size: contain;
  background-position: center;
}

.visit-us-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  flex-wrap: wrap;
  align-items: center;
}

.visit-info {
  flex: 1;
}

.visit-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.visit-subtext {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #444;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

.visit-detail h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #316b7c;
}

.visit-detail p,
.visit-detail a {
  font-size: 1rem;
  color: #222;
  line-height: 1.6;
  text-decoration: none;
}

.visit-detail a:hover {
  color: #813772;
}

.visit-map-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  color: #813772;
  text-decoration: none;
  border-bottom: 2px solid #813772;
}

.visit-map-link:hover {
  color: #000;
  border-color: #000;
}

.visit-map {
  flex: 1;
  min-width: 300px;
}

.visit-map img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


/* Footer */
.site-footer {
  background-color: #000;
  color: #ffffff;
  padding: 60px 20px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  justify-content: space-between;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.footer-tagline {
  font-size: 1rem;
  font-weight: 300;
  max-width: 300px;
  line-height: 1.6;
}

.footer-links,
.footer-contact {
  flex: 1;
  min-width: 200px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #dbb75b;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

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

.footer-links a,
.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #dbb75b;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  margin-right: 15px;
  color: #ffffff;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #dbb75b;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #bbb;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}


/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Accessibility Menu */
.accessibility-menu {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.accessibility-btn {
  background-color: var(--posy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Animation keyframes */
@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideFadeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.dropdown-panel.animate-in {
  animation: slideFadeIn 0.4s ease-out forwards;
}

.dropdown-panel.animate-out {
  animation: slideFadeOut 0.3s ease-in forwards;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--black);
        flex-direction: column;
        padding: 20px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        padding: 10px 0;
        border-bottom: 1px solid #333;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .dropdown-panel-content {
        flex-direction: column;
        padding: 20px;
    }
    
    .dropdown-panel-left,
    .dropdown-panel-right {
        flex: 1 1 100%;
    }
    
    .dropdown-image {
        max-height: 200px;
    }
    
    .services-columns {
        flex-direction: column;
        gap: 20px;
    }
    
    .problems-list {
        columns: 1;
    }
    
    .dropdown-panel-close {
        color: var(--white);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-phone {
        font-size: 1.2rem;
    }
    
    .logo img {
        max-width: 180px;
    }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Animation Enhancements */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-fadeUp {
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
}

.animate-zoomIn {
  animation: zoomIn 1s ease-out forwards;
  opacity: 0;
}

.animate-slideRight {
  animation: slideRight 1s ease-out forwards;
  opacity: 0;
}

.animate-delay-1 { animation-delay: 0.3s; }
.animate-delay-2 { animation-delay: 0.6s; }
.animate-delay-3 { animation-delay: 0.9s; }

.animate-visible { opacity: 1 !important; }


/* Inner Page Hero Styles */
.hero-about, .hero-new-patient, .hero-contact {
    height: 60vh;
    min-height: 500px;
    background-image: url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
}

.hero-about .hero-content, 
.hero-new-patient .hero-content,
.hero-contact .hero-content {
    margin-top: 150px;
}

/* About Page Styles */
/* ============================================= */
/* ABOUT PAGE SPECIFIC STYLES */
/* ============================================= */

/* Hero Section - About Page */
.hero-about {
  height: 80vh;
  min-height: 600px;
  background-image: url('images/patient-image.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Creates parallax effect */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-about .hero-content {
  margin-top: 150px;
}

.hero-about .hero-title {
  font-size: 4.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.hero-about .hero-subtitle {
  font-size: 1.5rem;
  letter-spacing: 5px;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

.hero-scroll i {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-15px) translateX(-50%);
  }
  60% {
    transform: translateY(-7px) translateX(-50%);
  }
}

/* Welcome Section */
.welcome-section {
  padding: 100px 0;
  background-color: var(--black);
  color: var(--white);
}

.welcome-grid {
  display: flex;
  gap: 60px;
  align-items: center;
}

.welcome-text {
  flex: 1;
}

.welcome-text .section-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--black);
}

.welcome-text .lead-text {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 30px;
  color: var(--posy);
}

.divider {
  width: 100px;
  height: 3px;
  background-color: var(--posy);
  margin: 30px 0;
}

.welcome-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.signature {
  margin-top: 40px;
}

.signature img {
  height: 50px;
  margin-bottom: 10px;
}

.signature p {
  font-style: italic;
  color: #aaa;
}

.welcome-image {
  flex: 1;
  position: relative;
}

.image-container {
  position: relative;
}

.image-container .main-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.image-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: var(--embers);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.image-badge span {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.image-badge p {
  font-size: 0.9rem;
  margin: 5px 0 0;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background-color: var(--posy);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 30px 20px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  color: var(--white);
}

.stat-label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
}

/* Values Section */
.values-section {
  padding: 100px 0;
  background-image: url('images/white-bg.jpg');
  background-size: cover;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: var(--black);
  text-transform: lowercase;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--posy);
  font-weight: 300;
  letter-spacing: 2px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: #414a4c;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.value-card:hover {
  transform: translateY(-10px);
  background-color: rgba(129, 55, 114, 0.1);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--posy);
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.value-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 20px;
}

.value-hover-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 30px;
  background-color: rgba(129, 55, 114, 0.7);
  transform: translateY(100%);
  transition: all 0.3s ease;
  opacity: 0;
}

.value-card:hover .value-hover-content {
  transform: translateY(0);
  opacity: 1;
}

.value-hover-content p {
  color: var(--white);
  font-style: italic;
  margin-bottom: 0;
}

/* Team Section */
.team-preview-section {
  padding: 100px 0;
  background-color: var(--ink);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.team-member {
  text-align: center;
  position: relative;
}

.member-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 25px;
}

.member-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(129, 55, 114, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.team-member:hover .member-overlay {
  opacity: 1;
}

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.btn-meet {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--white);
  color: var(--posy);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-meet:hover {
  background-color: var(--embers);
  color: var(--white);
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--white);
}

.position {
  font-size: 1rem;
  color: var(--posy);
  margin-bottom: 10px;
  font-weight: 500;
}

.specialty {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 15px;
}

.member-social {
  margin-top: 15px;
}

.member-social a {
  color: var(--white);
  margin: 0 8px;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.member-social a:hover {
  color: var(--posy);
}

.team-cta {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.team-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ccc;
}

.btn-meet-team {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--posy);
  color: var(--white);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.btn-meet-team:hover {
  background-color: var(--embers);
}

/* Technology Section */
.technology-section {
  padding: 100px 0;
  background-color: var(--black);
}

.tech-grid {
  display: flex;
  gap: 60px;
  align-items: center;
}

.tech-content {
  flex: 1;
}

.tech-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.tech-content .lead-text {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 30px;
  color: var(--posy);
}

.tech-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.tech-features {
  margin-top: 40px;
}

.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.feature-item i {
  font-size: 1.8rem;
  color: var(--posy);
  margin-top: 5px;
}

.feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--white);
}

.feature-item p {
  font-size: 1rem;
  margin-bottom: 0;
  color: #aaa;
}

.btn-tech {
  display: inline-block;
  padding: 15px 35px;
  background-color: transparent;
  color: var(--posy);
  border: 2px solid var(--posy);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s;
}

.btn-tech:hover {
  background-color: var(--posy);
  color: var(--white);
}

.tech-image {
  flex: 1;
  position: relative;
}

.tech-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.tech-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background-color: var(--embers);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transform: rotate(-5deg);
}

.tech-badge span {
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tech-badge p {
  font-size: 0.9rem;
  margin: 5px 0 0;
}

/* Testimonial Section */
.testimonial-section {
  padding: 100px 0;
  background-color: var(--ink);
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonial.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.testimonial-content {
  background-color: rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 10px;
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: var(--posy);
  margin-bottom: 20px;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--white);
  font-style: italic;
}

.patient-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.patient-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--posy);
}

.patient-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--white);
}

.patient-location {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 10px;
}

.patient-rating {
  color: var(--embers);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.testimonial-prev, .testimonial-next {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-prev:hover, .testimonial-next:hover {
  color: var(--posy);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background-color: var(--posy);
}

.testimonial-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.btn-testimonials {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--posy);
  color: var(--white);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-testimonials:hover {
  background-color: var(--embers);
}

.btn-video-testimonials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-video-testimonials:hover {
  background-color: var(--white);
  color: var(--black);
}

/* Office Tour Section */
.office-tour-section {
  padding: 100px 0;
  background-image: url('images/marble-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.tour-grid {
  display: flex;
  gap: 60px;
  align-items: center;
}

.tour-content {
  flex: 1;
  color: #000;
}

.tour-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  color: #000;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #000;
}

.amenity i {
  font-size: 1.3rem;
  color: var(--posy);
}

.amenity span {
  font-size: 1rem;
  color: var(--black);
}

.btn-tour {
  display: inline-block;
  padding: 15px 35px;
  background-color: transparent;
  color: var(--posy);
  border: 2px solid var(--posy);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-tour:hover {
  background-color: var(--posy);
  color: var(--white);
}

.tour-gallery {
  flex: 1;
}

.main-tour-image {
  margin-bottom: 15px;
}

.main-tour-image img {
  width: 100%;
  border-radius: 10px;
  height: 350px;
  object-fit: cover;
}

.tour-thumbnails {
  display: flex;
  gap: 15px;
}

.tour-thumbnails img {
  width: calc(33.333% - 10px);
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s;
}

.tour-thumbnails img:hover, 
.tour-thumbnails img.active {
  opacity: 1;
  transform: translateY(-5px);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background-color: var(--posy);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  background-color: var(--black);
  color: var(--white);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-phone:hover {
  background-color: var(--white);
  color: var(--black);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-contact:hover {
  background-color: var(--white);
  color: var(--posy);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .welcome-grid,
  .tech-grid,
  .tour-grid {
    gap: 40px;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .hero-about .hero-title {
    font-size: 3.5rem;
  }
  
  .welcome-grid,
  .tech-grid,
  .tour-grid {
    flex-direction: column;
  }
  
  .welcome-image,
  .tech-image,
  .tour-gallery {
    order: -1;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-about {
    height: 70vh;
    min-height: 500px;
    background-attachment: scroll;
  }
  
  .hero-about .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-about .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .amenities-list {
    grid-template-columns: 1fr;
  }
  
  .testimonial-cta {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .hero-about .hero-title {
    font-size: 2.2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 2.2rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-phone,
  .btn-contact {
    width: 100%;
    justify-content: center;
  }
}

/* Animation for Stats Counter */
.stat-number {
  transition: all 1s ease;
}

/* Service Page Styles */
/* ============================================= */
/* SERVICES PAGE SPECIFIC STYLES */
/* ============================================= */

/* Hero Section */
.hero-services {
    background: var(--black) url('images/smile2.jpg') center/cover no-repeat;
    height: 70vh;
    min-height: 500px;
}

/* Services Tabs */
.services-tabs {
    margin-top: 60px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 30px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    border-bottom-color: var(--posy);
    color: var(--posy);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.service-detail {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-text {
    flex: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--posy);
    font-weight: bold;
}

.btn-learn-more {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--posy);
    color: var(--white);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-learn-more:hover {
    background-color: var(--embers);
}

/* Featured Technology */
.featured-tech {
    background-color: var(--white);
    padding: 80px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-card {
    background-color: var(--embers);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    background-color: var(--ink);
}

.tech-icon {
    font-size: 2.5rem;
    color: var(--posy);
    margin-bottom: 20px;
}

/* Service Highlights */
.service-highlights {
    background-color: var(--ink);
    padding: 80px 0;
    color: var(--white);
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.highlight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.highlight-content {
    padding: 25px;
    color: var(--black);
}

.highlight-content h3 {
    color: var(--posy);
    margin-bottom: 15px;
}

.btn-highlight {
    display: inline-block;
    padding: 10px 25px;
    background-color: transparent;
    color: var(--posy);
    border: 2px solid var(--posy);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-highlight:hover {
    background-color: var(--posy);
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-detail {
        flex-direction: column;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        border-bottom: none;
        border-left: 3px solid transparent;
        text-align: left;
    }
    
    .tab-btn.active {
        border-left-color: var(--posy);
        border-bottom-color: transparent;
    }
}

/* ============================================= */
/* SMILE GALLERY SPECIFIC STYLES */
/* ============================================= */

/* Hero Section */
.hero-gallery {
    background-image: url('images/smile3.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 60vh;
    min-height: 400px;
}

/* Gallery Filters */
.gallery-filters {
    padding: 40px 0;
    background-color: var(--white);
    position: sticky;
    top: 80px;
    z-index: 90;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 12px 25px;
    background-color: transparent;
    border: 2px solid var(--posy);
    color: var(--posy);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active {
    background-color: var(--posy);
    color: var(--white);
}

.filter-btn:hover:not(.active) {
    background-color: rgba(129, 55, 114, 0.1);
}

/* Gallery Grid */
.gallery-grid-section {
    padding: 60px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Square aspect ratio */
    overflow: hidden;
}

.gallery-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.before-image {
    z-index: 1;
}

.after-image {
    z-index: 2;
    opacity: 0;
}

.gallery-item:hover .after-image {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    z-index: 3;
    transition: bottom 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.gallery-overlay p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-view-case {
    padding: 8px 20px;
    background-color: var(--posy);
    color: var(--white);
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view-case:hover {
    background-color: var(--embers);
}

.gallery-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.gallery-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-gallery-cta {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--posy);
    color: var(--white);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-gallery-cta:hover {
    background-color: var(--embers);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-gallery {
        height: 50vh;
    }
    
    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-btn {
        flex: 0 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-gallery {
        height: 40vh;
        min-height: 300px;
    }
    
    .gallery-overlay {
        padding: 15px;
    }
    
    .gallery-overlay h3 {
        font-size: 1.1rem;
    }
}

/* ============================================= */
/* DENTAL TOURISM SPECIFIC STYLES */
/* ============================================= */

/* Hero Section */
.hero-tourism {
    background: var(--black) url('images/tourism-hero.jpg') center/cover no-repeat;
    height: 70vh;
    min-height: 500px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-card {
    background-color: var(--embers);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background-color: wheat;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--posy);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--ink);
}

/* Destination Section */
.destination-section {
    padding: 100px 0;
    background-color: var(--ink);
    color: var(--white);
}

.destination-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.destination-content .section-title {
    color: var(--black);
    text-align: left;
}

.destination-content .lead-text {
    color: var(--posy);
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--posy);
    margin: 30px 0;
}

.destination-features {
    margin: 40px 0;
}

.feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.feature i {
    font-size: 1.8rem;
    color: var(--posy);
    margin-top: 5px;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.btn-download-guide {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: var(--posy);
    color: var(--white);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-download-guide:hover {
    background-color: var(--embers);
}

.destination-map {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Packages Section */
.packages-section {
    padding: 100px 0;
    background-color: var(--white);
}

.package-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.package-btn {
    padding: 15px 30px;
    background-color: transparent;
    border: 2px solid var(--posy);
    color: var(--posy);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.package-btn.active {
    background-color: var(--posy);
    color: var(--white);
}

.package-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.package-content.active {
    display: block;
}

.package-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.package-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.package-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.package-image:hover img {
    transform: scale(1.05);
}

.package-price {
    font-size: 1.3rem;
    color: var(--posy);
    font-weight: 600;
    margin: 20px 0;
}

.package-includes {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    color: #000;
}

.package-includes li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.package-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--posy);
    font-weight: bold;
}

.package-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-package {
    padding: 15px 35px;
    background-color: var(--posy);
    color: var(--white);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-package:hover {
    background-color: var(--embers);
    transform: translateY(-3px);
}

.btn-package-outline {
    padding: 15px 35px;
    background-color: transparent;
    border: 2px solid var(--posy);
    color: var(--posy);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-package-outline:hover {
    background-color: var(--posy);
    color: var(--white);
}

/* Testimonial Section */
.traveler-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.traveler-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.traveler-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.traveler-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--posy);
}

.traveler-origin {
    font-size: 0.9rem;
    color: var(--posy);
    margin-top: 5px;
}

.traveler-rating {
    color: var(--embers);
    margin: 10px 0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background-color: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f9f9f9;
}

.faq-answer.active {
    padding: 20px 25px;
    max-height: 500px;
}

/* CTA Section */
.gradient-bg {
    background: linear-gradient(135deg, var(--posy), var(--embers));
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-map {
        height: 400px;
        order: -1;
    }
    
    .package-details {
        grid-template-columns: 1fr;
    }
    
    .package-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-tourism {
        height: 60vh;
    }
    
    .package-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .package-cta {
        flex-direction: column;
    }
    
    .btn-package, 
    .btn-package-outline {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-tourism {
        height: 50vh;
        min-height: 400px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
}

/* New Patients Page Specific Styles */
.hero-new-patient {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    position: relative;
    height: 80vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: var(--posy);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-phone:hover {
    background-color: var(--embers);
    transform: translateY(-3px);
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    background-color: var(--black);
    color: white;
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
}

.lead-text {
    font-size: 1.4rem;
    color: var(--posy);
    margin-bottom: 30px;
    font-weight: 300;
}

.welcome-video {
    margin-top: 50px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #aaa;
    font-style: italic;
}

/* Expect Section */
.expect-section {
    padding: 100px 0;
    background-color: var(--ink);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: black;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--posy);
    font-weight: 300;
    letter-spacing: 2px;
}

.expect-steps {
    max-width: 800px;
    margin: 0 auto;
}

.expect-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.expect-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    flex: 0 0 60px;
    height: 60px;
    background-color: var(--embers);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

.comfort-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.comfort-feature {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comfort-feature i {
    font-size: 2rem;
    color: var(--posy);
    margin-bottom: 10px;
}

.comfort-feature span {
    font-size: 0.9rem;
    color: #aaa;
}

/* Forms Section */
.forms-section {
    padding: 100px 0;
    background-color: var(--black);
}

.form-options {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.form-option {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.form-option.digital {
    background-color: rgba(129, 55, 114, 0.1);
    border: 2px solid var(--posy);
}

.form-option.download {
    background-color: rgba(184, 38, 1, 0.1);
    border: 2px solid var(--embers);
}

.form-option i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--posy);
}

.form-option.download i {
    color: var(--embers);
}

.form-option h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.form-option p {
    margin-bottom: 25px;
    color: #ccc;
}

.btn-form-option {
    padding: 12px 30px;
    background-color: var(--posy);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-form-option:hover {
    background-color: var(--embers);
    transform: translateY(-3px);
}

.form-downloads {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.form-download {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.form-download:hover {
    background-color: var(--embers);
}

.form-download i {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Insurance Section */
.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.insurance-card {
    background-color: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.insurance-card:hover {
    transform: translateY(-10px);
    background-color: rgba(129, 55, 114, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.insurance-icon {
    font-size: 2.5rem;
    color: var(--posy);
    margin-bottom: 20px;
}

.insurance-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.insurance-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 25px;
}

.insurance-logos, .payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.insurance-logos img {
    height: 30px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.insurance-logos img:hover {
    opacity: 1;
}

.payment-methods i {
    font-size: 2rem;
    color: #ccc;
    transition: color 0.3s;
}

.payment-methods i:hover {
    color: var(--posy);
}

.btn-learn-more {
    display: inline-block;
    padding: 10px 25px;
    background-color: transparent;
    color: var(--posy);
    border: 2px solid var(--posy);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-learn-more:hover {
    background-color: var(--posy);
    color: white;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--black);
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    background-color: rgba(255,255,255,0.1);
    padding: 50px;
    border-radius: 10px;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--posy);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: white;
    font-style: italic;
}

.patient-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.patient-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--posy);
}

.patient-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.patient-location {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 10px;
}

.patient-rating {
    color: var(--embers);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-prev, .testimonial-next {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-prev:hover, .testimonial-next:hover {
    color: var(--posy);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: var(--posy);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--ink);
}

.faq-accordion {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255,255,255,0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background-color: rgba(129, 55, 114, 0.2);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(0,0,0,0.2);
}

.faq-answer.active {
    padding: 20px 25px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

/* CTA Section */
.new-patient-cta {
    padding: 120px 0;
    text-align: center;
    background-color: var(--posy);
    position: relative;
    overflow: hidden;
}

.new-patient-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 2;
}

.new-patient-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-schedule {
    padding: 18px 35px;
    background-color: var(--embers);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-schedule:hover {
    background-color: var(--black);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-options {
        flex-direction: column;
    }
    
    .form-option {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .expect-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .patient-info {
        flex-direction: column;
        text-align: center;
    }
}

/* Blog Page Specific Styles */
.hero-blog {
    height: 70vh;
    min-height: 600px;
    text-align: center;
}

.search-container {
    max-width: 600px;
    margin: 40px auto 0;
}

.blog-search {
    display: flex;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    overflow: hidden;
}

.blog-search input {
    flex: 1;
    padding: 15px 25px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
}

.blog-search input::placeholder {
    color: rgba(255,255,255,0.8);
}

.blog-search button {
    width: 60px;
    background: var(--posy);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.blog-search button:hover {
    background: var(--embers);
}

/* Featured Post */
.featured-post {
    padding: 80px 0;
    background: var(--white);
    color: var(--black);
}

.featured-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.featured-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

.featured-content:hover .featured-image img {
    transform: scale(1.03);
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--posy);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-text {
    flex: 1;
}

.post-meta {
    display: block;
    color: var(--posy);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.featured-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--posy);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.read-more:hover {
    color: var(--embers);
    gap: 12px;
}

/* Blog Grid Layout */
.blog-grid {
    display: flex;
    gap: 50px;
    padding: 60px 0;
}

.articles-column {
    flex: 2;
}

.sidebar {
    flex: 1;
    min-width: 300px;
}

/* Blog Post Styles */
.blog-post {
    margin-bottom: 60px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 30px;
    background: white;
}

.post-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #000;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.page-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    color: var(--posy);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.page-nav:hover {
    background: var(--posy);
    color: white;
    border-color: var(--posy);
}

.page-nav.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.page-numbers {
    display: flex;
    gap: 10px;
}

.page-numbers a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.page-numbers a:hover, 
.page-numbers a.active {
    background: var(--posy);
    color: white;
    border-color: var(--posy);
}

/* Sidebar Styles */
.sidebar-widget {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.widget-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--posy);
    color: var(--black);
}

/* Categories Widget */
.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget li {
    margin-bottom: 12px;
}

.categories-widget a {
    display: flex;
    justify-content: space-between;
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.categories-widget a:hover {
    color: var(--posy);
    padding-left: 5px;
}

.categories-widget span {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 30px;
    font-size: 0.8rem;
}

/* Popular Posts Widget */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post {
    display: flex;
    gap: 15px;
}

.popular-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.popular-content h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.popular-content h4 a {
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s;
}

.popular-content h4 a:hover {
    color: var(--posy);
}

.popular-content .post-meta {
    font-size: 0.8rem;
    color: #888;
}

/* Newsletter Widget */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px;
    background: var(--posy);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: var(--embers);
}

/* Blog CTA */
.blog-cta {
    padding: 100px 0;
    background: var(--posy);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .featured-content {
        flex-direction: column;
    }
    
    .featured-image, .featured-text {
        width: 100%;
    }
    
    .blog-grid {
        flex-direction: column;
    }
    
    .sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-blog {
        height: 60vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .featured-text h2 {
        font-size: 1.8rem;
    }
    
    .sidebar {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-blog {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .search-container {
        margin-top: 20px;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .post-content h3 {
        font-size: 1.3rem;
    }
    
    .pagination {
        flex-direction: column;
        gap: 20px;
    }
    
    .page-numbers {
        order: -1;
    }
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
    background-color: var(--black);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--posy);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-card address, 
.contact-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 20px;
    font-style: normal;
}

.btn-directions {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--embers);
    color: var(--white);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-directions:hover {
    background-color: var(--posy);
}

.map-section {
    padding: 0 0 80px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-form-section {
    padding: 80px 0;
    background-color: var(--ink);
}

.contact-form-section .container {
    display: flex;
    gap: 60px;
}

.form-container {
    flex: 2;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--white);
}

.form-sidebar {
    flex: 1;
}

.form-sidebar h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--white);
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--posy);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid #444;
    border-radius: 5px;
    color: var(--white);
    font-size: 1rem;
}

.form-group textarea {
    grid-column: span 2;
}

.btn-submit {
    grid-column: span 2;
    padding: 15px 30px;
    background-color: var(--embers);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: var(--posy);
}

.emergency-section {
    padding: 80px 0;
    background-color: var(--black);
    text-align: center;
}

.emergency-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--embers);
}

.emergency-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-content-grid,
    .service-overview .container,
    .technology-section .container,
    .welcome-section .container,
    .forms-section .container {
        flex-direction: column;
    }
    
    .service-image,
    .tech-image,
    .welcome-image,
    .forms-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-about .hero-content h1,
    .hero-new-patient .hero-content h1,
    .hero-contact .hero-content h1 {
        font-size: 3rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group textarea,
    .btn-submit {
        grid-column: span 1;
    }
    
    .contact-form-section .container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-about .hero-content h1,
    .hero-new-patient .hero-content h1,
    .hero-contact .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons,
    .service-cta .cta-buttons,
    .new-patient-cta .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}