/* ============================================================
   NAIL ART & GÜZELLİK SALONU - ANA STİL DOSYASI
   Renkler: Beyaz, Pudra Pembe, Siyah, Altın
   ============================================================ */

/* ----- CSS Değişkenleri ----- */
:root {
  --white: #ffffff;
  --off-white: #fef9f7;
  --pink-light: #fce4ec;
  --pink: #f8bbd0;
  --pink-dark: #e91e63;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dark: #a8882e;
  --dark: #1a1a2e;
  --dark-soft: #2d2d44;
  --gray: #6c757d;
  --gray-light: #f0f0f0;
  --text-dark: #2d2d2d;
  --text-light: #f8f9fa;

  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-script: 'Dancing Script', cursive;

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* ----- Dark Theme ----- */
[data-theme="dark"] {
  --white: #1a1a2e;
  --off-white: #16213e;
  --pink-light: #2d2d44;
  --pink: #3d3d5c;
  --dark: #f8f9fa;
  --dark-soft: #e0e0e0;
  --gray-light: #2d2d44;
  --text-dark: #f8f9fa;
  --text-light: #2d2d2d;
}

/* ----- Reset & Base ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--off-white);
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

/* ----- Page Loader ----- */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--pink-light);
  border-top: 3px solid var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-text {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1.2rem;
}

/* ----- Navbar ----- */
#mainNavbar {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  padding: 12px 0;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

#mainNavbar .navbar-brand {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-text {
  font-weight: 600;
}

.navbar .nav-link {
  color: var(--text-light) !important;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--gold) !important;
  background: rgba(201, 168, 76, 0.1);
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.appointment-btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  border-radius: 25px !important;
  padding: 8px 20px !important;
  font-weight: 600 !important;
}

.appointment-btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(201, 168, 76, 0.4);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
}

.theme-toggle {
  background: transparent !important;
  border: none !important;
  color: var(--gold) !important;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px !important;
}

.nav-spacer {
  height: 76px;
}

/* ----- WhatsApp Float Button ----- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  color: white;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--text-light);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  font-family: var(--font-body);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ----- Hero Section ----- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  max-width: 800px;
}

.hero-subtitle {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-title .highlight {
  color: var(--gold);
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 35px;
  line-height: 1.8;
}

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

.btn-golden {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-golden:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
  color: var(--white);
}

.btn-outline-golden {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-golden:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  cursor: pointer;
  animation: bounce-scroll 2s infinite;
}

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

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

/* ----- Section Styling ----- */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-subtitle {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--gold);
  display: block;
  margin-bottom: 5px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-description {
  color: var(--gray);
  max-width: 600px;
  margin: 15px auto 0;
  font-size: 1rem;
  line-height: 1.7;
}

/* ----- About Section ----- */
.about-section {
  background-color: var(--white);
}

.about-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.about-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 25px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.about-experience .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-experience .text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-feature-item i {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ----- Team Section ----- */
.team-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0,0,0,0.04);
  transition: var(--transition);
  text-align: center;
  padding-top: 40px;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.team-card-image {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.15);
}
.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.team-card:hover .team-card-image img {
  transform: scale(1.08);
}
.team-card-body {
  padding: 20px 20px 30px;
}
.team-card-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-size: 1.15rem;
}
.team-card-title {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ----- Services Section ----- */
.services-section {
  background-color: var(--off-white);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

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

.service-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.service-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

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

.service-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.service-card-icon i {
  font-size: 1.3rem;
  color: var(--pink-dark);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-card-desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--gray-light);
}

.service-card-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.service-card-contact {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #25d366;
}

.service-card-duration {
  font-size: 0.85rem;
  color: var(--gray);
}

.service-card-duration i {
  margin-right: 5px;
}

/* ----- Gallery Section ----- */
.gallery-section {
  background-color: var(--white);
}

.gallery-filter {
  text-align: center;
  margin-bottom: 40px;
}

.filter-btn {
  display: inline-block;
  padding: 8px 20px;
  margin: 0 5px 10px;
  background: transparent;
  border: 2px solid var(--gray-light);
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

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

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

.gallery-overlay i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 500;
}

/* ----- Before/After Section ----- */
.before-after-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  padding: 80px 0;
}

.before-after-section .section-title {
  color: var(--white);
}

.before-after-card {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.before-after-card .label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

.label-before {
  background: var(--pink-dark);
  color: white;
}

.label-after {
  background: var(--gold);
  color: white;
}

/* ----- Reviews Section ----- */
.reviews-section {
  background-color: var(--off-white);
}

.review-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.review-stars {
  color: var(--gold);
  margin-bottom: 15px;
}

.review-stars i {
  margin-right: 2px;
}

.review-text {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-text::before {
  content: '\201C';
  font-size: 2rem;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 0;
  vertical-align: -10px;
  margin-right: 5px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-dark);
  font-weight: 600;
}

.review-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.review-service {
  font-size: 0.8rem;
  color: var(--gold);
}

/* ----- Campaigns Section ----- */
.campaigns-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
}

.campaigns-section .section-title {
  color: var(--white);
}

.campaign-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: var(--transition);
  height: 100%;
}

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

.campaign-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.campaign-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.campaign-card:hover .campaign-image img {
  transform: scale(1.1);
}

.campaign-discount {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #e91e63, #c2185b);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
}

.campaign-body {
  padding: 25px;
}

.campaign-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.campaign-dates {
  font-size: 0.85rem;
  color: var(--gray);
}

.campaign-dates i {
  color: var(--gold);
  margin-right: 5px;
}

/* ----- Blog Section ----- */
.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: var(--transition);
  height: 100%;
}

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

.blog-card-image {
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

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

.blog-card-date {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.blog-card-date i {
  margin-right: 5px;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.blog-card-title a {
  color: inherit;
}

.blog-card-title a:hover {
  color: var(--gold);
}

.blog-card-excerpt {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* ----- Contact Section ----- */
.contact-section {
  background-color: var(--white);
}

.contact-info-card {
  background: var(--off-white);
  border-radius: 15px;
  padding: 30px;
  transition: var(--transition);
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.contact-info-icon i {
  font-size: 1.3rem;
  color: var(--white);
}

.contact-info-title {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.contact-info-value {
  color: var(--gray);
  font-size: 0.9rem;
}
.contact-info-value a {
  color: var(--gray);
  text-decoration: none;
}
.contact-info-value a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--off-white);
  border-radius: 15px;
  padding: 40px;
}

.form-control {
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 0.9rem;
  transition: var(--transition);
  color: var(--text-dark);
  background-color: var(--white);
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* ----- Appointment Section ----- */
.appointment-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  padding: 100px 0;
}

.appointment-section .section-title {
  color: var(--white);
}

.appointment-form-wrapper {
  background: var(--white);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* ----- WhatsApp Seçenek Kartları ----- */
.whatsapp-option {
  display: block;
  background: var(--off-white);
  border-radius: 15px;
  padding: 25px 15px;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
  height: 100%;
}

.whatsapp-option:hover {
  transform: translateY(-5px);
  border-color: #25d366;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.15);
  text-decoration: none;
}

.whatsapp-option-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
  color: var(--white);
}

.whatsapp-option h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.whatsapp-option small {
  color: var(--gray);
  font-size: 0.8rem;
  display: block;
  line-height: 1.4;
}

/* ----- Footer ----- */
.site-footer {
  background: linear-gradient(135deg, var(--dark) 0%, #0f0f1f 100%);
  color: rgba(255,255,255,0.8);
}

.footer-top {
  padding: 80px 0 40px;
}

.footer-title {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.6);
}

.social-links {
  display: flex;
  gap: 10px;
}

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

.social-link:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.working-hours {
  list-style: none;
  padding: 0;
}

.working-hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.contact-info i {
  color: var(--gold);
  margin-top: 4px;
  min-width: 15px;
}

.contact-info a {
  color: rgba(255,255,255,0.6);
}

.contact-info a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}

.copyright {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin: 0;
}

.credit {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin: 0;
}

/* ----- Scroll to Top ----- */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(201, 168, 76, 0.4);
}

/* ----- Alert Messages ----- */
.alert-custom {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 20px;
}

.alert-success-custom {
  border-left-color: #28a745;
}

.alert-error-custom {
  border-left-color: #dc3545;
}

/* ----- Page Banner ----- */
.page-banner {
  position: relative;
  padding: 150px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/pattern.png') repeat;
  opacity: 0.03;
}

.page-banner-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--white);
  font-weight: 700;
}

.page-banner-breadcrumb {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 10px;
}

.page-banner-breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.page-banner-breadcrumb a:hover {
  color: var(--gold);
}

/* ----- Empty State ----- */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state i {
  font-size: 4rem;
  color: var(--gray-light);
  margin-bottom: 20px;
}

.empty-state h4 {
  color: var(--gray);
  font-weight: 400;
}

/* ----- Pagination ----- */
.pagination-custom {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 40px;
}

.pagination-custom a,
.pagination-custom span {
  padding: 8px 15px;
  border-radius: 8px;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  font-size: 0.9rem;
}

.pagination-custom a:hover,
.pagination-custom .active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ----- Blog Detail Page ----- */
.blog-detail-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  position: relative;
}

.blog-detail-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 700;
}

.blog-detail-meta {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 15px;
}

.blog-detail-meta span {
  margin-right: 20px;
}

.blog-detail-meta i {
  color: var(--gold);
  margin-right: 5px;
}

.blog-detail-content {
  padding: 60px 0;
}

.blog-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 35px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold-light);
}

.blog-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 25px;
  margin-bottom: 12px;
}

.blog-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.blog-content strong {
  color: var(--dark);
}

.blog-detail-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.blog-detail-content h2,
.blog-detail-content h3 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 15px;
}

.blog-detail-content img {
  border-radius: 10px;
  margin: 20px 0;
}

/* ----- Modal ----- */
.modal-content {
  border: none;
  border-radius: 15px;
  overflow: hidden;
}

/* ----- Responsive ----- */
@media (max-width: 1199px) {
  .hero-title { font-size: 3.5rem; }
}

@media (max-width: 991px) {
  .hero-title { font-size: 2.8rem; }
  .section { padding: 70px 0; }
  .about-image-wrapper { margin-bottom: 30px; }
  .about-experience { right: 0; }
  .appointment-form-wrapper { padding: 30px; }
  .page-banner-title { font-size: 2.2rem; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1.2rem; }
  .hero-description { font-size: 1rem; }
  .section-title { font-size: 2rem; }
  .section { padding: 50px 0; }
  .about-features { grid-template-columns: 1fr; }
  .contact-form { padding: 25px; }
  .appointment-form-wrapper { padding: 20px; }
  .page-banner-title { font-size: 1.8rem; }
  .blog-detail-title { font-size: 1.8rem; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 25px; bottom: 20px; right: 20px; }
  .scroll-to-top { bottom: 20px; left: 20px; width: 40px; height: 40px; }
}

@media (max-width: 575px) {
  .hero-title { font-size: 1.8rem; }
  .hero-buttons .btn-golden,
  .hero-buttons .btn-outline-golden { width: 100%; justify-content: center; }
  .filter-btn { font-size: 0.8rem; padding: 6px 14px; }
}

/* ----- Additional Animations ----- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ----- Star Rating Input ----- */
.star-rating {
  direction: rtl;
  display: inline-flex;
}

.star-rating input {
  display: none;
}

.star-rating label {
  color: var(--gray-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: var(--gold);
}

/* ----- Loading Spinner for Buttons ----- */
.btn-loading {
  position: relative;
  pointer-events: none;
}

.btn-loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}
