/*
Theme Name: DantSpa Dental Clinic
Theme URI: https://growwithba.com
Description: Professional dental clinic theme for DantSpa — Hello Elementor child theme. Built by GrowwithBA. Import the Elementor template after activating this theme.
Author: GrowwithBA (Dinesh Dudhpachare)
Author URI: https://growwithba.com
Template: hello-elementor
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: dantspa
*/

/* ========================================
   GLOBAL VARIABLES
   ======================================== */
:root {
  --ds-primary: #0d9488;
  --ds-primary-dark: #0b7d73;
  --ds-primary-light: #d1faf5;
  --ds-dark: #1a3a4a;
  --ds-dark-light: #234b5e;
  --ds-light-bg: #f8fafb;
  --ds-white: #ffffff;
  --ds-gray-100: #f1f5f9;
  --ds-gray-200: #e2e8f0;
  --ds-gray-300: #cbd5e1;
  --ds-gray-400: #94a3b8;
  --ds-gray-500: #64748b;
  --ds-gray-600: #475569;
  --ds-gray-700: #334155;
  --ds-text-dark: #1e293b;
  --ds-text-body: #475569;
  --ds-whatsapp: #25D366;
  --ds-star: #f59e0b;
  --ds-radius-sm: 8px;
  --ds-radius-md: 12px;
  --ds-radius-lg: 16px;
  --ds-radius-xl: 24px;
  --ds-radius-full: 9999px;
  --ds-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --ds-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --ds-shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

/* ========================================
   BASE STYLES
   ======================================== */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ds-text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ========================================
   HEADER STYLES
   ======================================== */
.ds-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ds-gray-200);
  padding: 12px 0;
}

.ds-logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--ds-dark);
  text-decoration: none;
}

.ds-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--ds-primary);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  font-size: 16px;
  margin-right: 8px;
}

.ds-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ds-gray-600);
  text-decoration: none;
  padding: 8px 16px;
  transition: color 0.2s;
}

.ds-nav a:hover {
  color: var(--ds-primary);
}

.ds-phone-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ds-text-dark);
  text-decoration: none;
}

/* ========================================
   BUTTONS
   ======================================== */
.ds-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ds-primary);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: var(--ds-radius-full);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.ds-btn-primary:hover {
  background: var(--ds-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13,148,136,0.35);
}

.ds-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ds-primary);
  border: 2px solid var(--ds-primary);
  padding: 10px 28px;
  border-radius: var(--ds-radius-full);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.ds-btn-outline:hover {
  background: var(--ds-primary);
  color: white;
}

/* ========================================
   SECTION LABEL (teal uppercase)
   ======================================== */
.ds-section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ds-primary);
  margin-bottom: 12px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.ds-hero {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #f0fdfa 0%, #f8fafb 50%, #ecfdf5 100%);
  overflow: hidden;
}

.ds-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,148,136,0.08);
  border: 1px solid rgba(13,148,136,0.2);
  padding: 6px 16px;
  border-radius: var(--ds-radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--ds-primary-dark);
  margin-bottom: 24px;
}

.ds-hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: var(--ds-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.ds-hero h1 .highlight {
  color: var(--ds-primary);
}

.ds-hero-sub {
  font-size: 17px;
  color: var(--ds-gray-600);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.ds-trust-badges {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.ds-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 20px;
  background: white;
  border: 1px solid var(--ds-gray-200);
  border-radius: var(--ds-radius-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--ds-dark);
}

.ds-trust-badge svg {
  color: var(--ds-primary);
  margin-bottom: 6px;
}

.ds-hero-image {
  border-radius: var(--ds-radius-xl);
  box-shadow: var(--ds-shadow-lg);
  object-fit: cover;
}

.ds-floating-card {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: white;
  padding: 16px 20px;
  border-radius: var(--ds-radius-md);
  box-shadow: var(--ds-shadow-lg);
}

.ds-floating-card .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ds-primary);
  margin-bottom: 4px;
}

.ds-floating-card .text {
  font-size: 14px;
  font-weight: 600;
  color: var(--ds-dark);
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.ds-services {
  padding: 80px 0;
  background: var(--ds-light-bg);
}

.ds-service-card {
  background: white;
  padding: 32px 24px;
  border: 1px solid var(--ds-gray-200);
  border-radius: var(--ds-radius-md);
  transition: all 0.3s;
}

.ds-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ds-shadow-lg);
  border-color: var(--ds-primary);
}

.ds-service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ds-primary-light);
  border-radius: var(--ds-radius-sm);
  color: var(--ds-primary);
  margin-bottom: 16px;
}

.ds-service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ds-dark);
  margin-bottom: 8px;
}

.ds-service-card p {
  font-size: 14px;
  color: var(--ds-gray-500);
  line-height: 1.5;
}

/* ========================================
   ABOUT DOCTOR
   ======================================== */
.ds-about {
  padding: 80px 0;
  background: white;
}

.ds-doctor-photo {
  border-radius: var(--ds-radius-xl);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.ds-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 12px 16px;
  border-radius: var(--ds-radius-md);
  box-shadow: var(--ds-shadow-lg);
  font-size: 28px;
  font-weight: 800;
  color: var(--ds-dark);
}

.ds-tag {
  display: inline-block;
  background: var(--ds-primary-light);
  color: var(--ds-primary);
  padding: 6px 14px;
  border-radius: var(--ds-radius-full);
  font-size: 13px;
  font-weight: 600;
  margin: 3px;
}

.ds-stat {
  text-align: center;
}

.ds-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--ds-primary);
}

.ds-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ds-gray-500);
}

/* ========================================
   BOOKING FORM
   ======================================== */
.ds-booking {
  padding: 80px 0;
  background: white;
}

.ds-form-container {
  max-width: 640px;
  margin: 0 auto;
  background: var(--ds-light-bg);
  padding: 40px;
  border: 1px solid var(--ds-gray-200);
  border-radius: var(--ds-radius-lg);
}

.ds-form-container input,
.ds-form-container select,
.ds-form-container textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--ds-gray-300);
  border-radius: var(--ds-radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ds-text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ds-form-container input:focus,
.ds-form-container select:focus,
.ds-form-container textarea:focus {
  outline: none;
  border-color: var(--ds-primary);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}

.ds-form-container label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ds-text-dark);
  margin-bottom: 6px;
  display: block;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.ds-testimonials {
  padding: 80px 0;
  background: var(--ds-light-bg);
}

.ds-testimonial-card {
  background: white;
  padding: 32px;
  border: 1px solid var(--ds-gray-200);
  border-radius: var(--ds-radius-md);
}

.ds-testimonial-card blockquote {
  font-size: 15px;
  font-style: italic;
  color: var(--ds-gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.ds-testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ds-dark);
}

.ds-verified-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--ds-primary);
}

.ds-stars {
  color: var(--ds-star);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* ========================================
   LOCATION
   ======================================== */
.ds-location {
  padding: 80px 0;
}

.ds-location iframe {
  border-radius: var(--ds-radius-lg);
  border: none;
}

/* ========================================
   CONTACT & HOURS
   ======================================== */
.ds-contact {
  padding: 80px 0;
  background: var(--ds-light-bg);
}

.ds-hours-panel {
  background: var(--ds-primary);
  color: white;
  padding: 48px;
  border-radius: 0 var(--ds-radius-lg) var(--ds-radius-lg) 0;
  height: 100%;
}

.ds-hours-panel h3 {
  color: white;
}

.ds-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-size: 15px;
}

/* ========================================
   FOOTER
   ======================================== */
.ds-footer {
  background: var(--ds-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.ds-footer h4 {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.ds-footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.ds-footer a:hover {
  color: white;
}

.ds-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  margin-top: 40px;
  font-size: 13px;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.ds-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ds-whatsapp);
  color: white;
  padding: 14px 24px;
  border-radius: var(--ds-radius-full);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
}

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

/* ========================================
   SOCIAL ICONS
   ======================================== */
.ds-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--ds-primary-light);
  color: var(--ds-primary);
  border-radius: 50%;
  transition: all 0.3s;
  text-decoration: none;
}

.ds-social-icon:hover {
  background: var(--ds-primary);
  color: white;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .ds-hero h1 { font-size: 34px; }
  .ds-trust-badges { flex-wrap: wrap; }
  .ds-hours-panel { border-radius: 0 0 var(--ds-radius-lg) var(--ds-radius-lg); }
}
