/* Main Styles for Dental Clinic Website */

:root {
  --primary-color: #1a76d2;
  --secondary-color: #00bcd4;
  --accent-color: #ff5722;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --text-color: #212529;
  --light-text: #6c757d;
  --white: #ffffff;
  --success: #28a745;
  --border-radius: 4px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Global Styles */
body {
  font-family: "Roboto", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 10px 25px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 10px 25px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.section-padding {
  padding: 100px 0;
}

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

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title h2:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--light-text);
}

/* Header & Navigation */
.navbar {
  padding: 15px 0;
  transition: var(--transition);
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 50px;
}

.navbar-nav .nav-link {
  color: var(--dark-color);
  font-weight: 500;
  padding: 10px 15px;
  transition: var(--transition);
}

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

.navbar-nav .nav-item.cta .nav-link {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 10px 20px;
}

.navbar-nav .nav-item.cta .nav-link:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/antalya-dental-tourisme-bg.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
}

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

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.hero-btns .btn {
  margin: 0 10px;
  padding: 12px 30px;
}

/* Features Section */
.features-section {
  background-color: var(--light-color);
}

.feature-box {
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* About Section */
.about-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.about-list li {
  padding: 10px 0;
  position: relative;
  padding-left: 30px;
}

.about-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--success);
}

/* Treatments Section */
.treatment-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  transition: var(--transition);
}

.treatment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.treatment-card img {
  height: 200px;
  object-fit: cover;
}

.treatment-card .card-body {
  padding: 25px;
}

.treatment-card .card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.treatment-card .card-text {
  margin-bottom: 20px;
}

/* Tourism Section */
.tourism-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../images/Antalya-bg.svg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
}

.tourism-section h2,
.tourism-section h3 {
  color: var(--white);
}

.tourism-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.tourism-box:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

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

/* Process Section */
.process-step {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}

.process-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.process-step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 30px;
  right: -50%;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  z-index: 1;
}

/* Gallery Section */
.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--box-shadow);
}

.gallery-item img {
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay h4 {
  color: var(--white);
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonial-section {
  background-color: var(--light-color);
}

.testimonial-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  position: relative;
}

.testimonial-card:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
}

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

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-author-info h5 {
  margin-bottom: 5px;
}

.testimonial-author-info p {
  margin-bottom: 0;
  color: var(--light-text);
}

/* FAQ Section */
.faq-item {
  margin-bottom: 20px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.faq-header {
  background-color: var(--white);
  padding: 0;
  border: none;
}

.faq-button {
  padding: 20px;
  font-weight: 600;
  color: var(--text-color);
  text-align: left;
  width: 100%;
  text-decoration: none;
  position: relative;
  transition: var(--transition);
}

.faq-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: var(--white);
}

.faq-button:focus {
  box-shadow: none;
}

.faq-button:after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}

.faq-button:not(.collapsed):after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-body {
  padding: 0 20px 20px;
}

/* Contact Section */
.contact-info {
  margin-bottom: 30px;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-details h5 {
  margin-bottom: 5px;
}

.contact-details p {
  margin-bottom: 0;
  color: var(--light-text);
}

.contact-form .form-control {
  height: 50px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  border: 1px solid #ddd;
  padding: 10px 15px;
}

.contact-form textarea.form-control {
  height: 150px;
  resize: none;
}

.contact-form .btn {
  padding: 12px 30px;
}

.map-container {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-about p {
  margin-bottom: 20px;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-title:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
  bottom: 0;
  left: 0;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  margin-bottom: 15px;
}

.footer-contact-icon {
  color: var(--secondary-color);
  margin-right: 15px;
  font-size: 1.25rem;
}

.footer-social {
  list-style: none;
  padding-left: 0;
  display: flex;
}

.footer-social li {
  margin-right: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 60px;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* Whatsapp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .navbar {
    padding: 10px 0;
  }

  .navbar-brand img {
    height: 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-padding {
    padding: 70px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .process-step:not(:last-child):after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-padding {
    padding: 50px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 1.75rem;
  }

  .about-img {
    margin-bottom: 30px;
  }
}

@media (max-width: 575.98px) {
  .hero-btns .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }

  .footer {
    padding: 50px 0 0;
  }

  .footer-title {
    margin-top: 30px;
  }
}
