/*
Theme Name: Kanghee Dermatology Clinic
Theme URI: https://kangheeclinic.com
Author: Kanghee Dermatology Clinic
Author URI: https://kangheeclinic.com
Description: Premium dermatology clinic theme for Kanghee Dermatology Clinic. Features elegant blue design for Filler, Weight Loss, Pigmentation, and Skin Care services.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dubai-glow-clinic
Tags: medical, clinic, aesthetic, beauty, responsive, full-width-template
*/

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #0099CC;
  --gold-light:  #DCF2FF;
  --gold-dark:   #005C8A;
  --cream:       #F5FAFF;
  --white:       #FFFFFF;
  --dark:        #1A1A1A;
  --dark-soft:   #2D2D2D;
  --gray:        #6B6B6B;
  --gray-light:  #EEEEF2;
  --pink:        #E5F2FF;
  --pink-accent: #4499CC;
  --teal:        #0077AA;
  --teal-light:  #CCEEFF;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --radius:       8px;
  --radius-lg:    16px;
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.12);
  --transition:   all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--dark);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,153,204,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: #1f6b57;
  transform: translateY(-2px);
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray);
  max-width: 580px;
  line-height: 1.8;
}

/* =============================================
   HEADER / NAV
   ============================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,153,204,0.15);
  transition: var(--transition);
}

#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-family: var(--font-heading);
  font-style: italic;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .brand { font-family: var(--font-heading); font-size: 18px; color: var(--dark); }
.logo-text .tagline { font-size: 10px; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; font-weight: 600; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.primary-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark-soft);
  position: relative;
  padding-bottom: 4px;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.primary-nav a:hover::after,
.primary-nav a.current::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-cta .btn { padding: 10px 22px; font-size: 12px; }

.nav-phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 1.5px solid rgba(0,0,0,0.18);
  border-radius: 50px;
  transition: var(--transition);
}
.nav-phone:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   NAV DROPDOWN (Services)
   ============================================= */
.nav-item-dropdown { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -12px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  z-index: 1001;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-soft);
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
}

.nav-dropdown li a:hover {
  color: var(--gold);
  background: var(--gold-light);
}

.nav-dropdown li a::after { display: none; }

.dropdown-caret {
  font-size: 9px;
  opacity: 0.6;
  margin-left: 3px;
  display: inline-block;
  transition: transform 0.2s;
}

.nav-item-dropdown:hover .dropdown-caret { transform: rotate(180deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.4;
}

.hero-bg.no-image {
  opacity: 1;
  background: linear-gradient(135deg, #051937 0%, #083D7A 35%, #0A7EC8 70%, #00C4EE 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(5,25,55,0.93) 0%, rgba(5,25,55,0.72) 50%, rgba(0,100,200,0.10) 100%);
}

.hero-glow {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0,198,255,0.18) 0%, rgba(0,120,220,0.10) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 100px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 520px;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.hero-service-tag {
  padding: 6px 16px;
  border: 1px solid rgba(0,153,204,0.5);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* =============================================
   SERVICES GRID
   ============================================= */
.services-section {
  background: var(--cream);
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-header .section-subtitle { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  height: 220px;
  background: var(--gray-light);
  position: relative;
  overflow: hidden;
}

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

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

.service-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

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

.service-card-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.service-card-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-link::after { content: '→'; transition: transform 0.2s; }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* =============================================
   BEFORE / AFTER + TESTIMONIALS
   ============================================= */
.social-proof {
  background: var(--white);
}

.social-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.before-after-title,
.testimonials-title {
  font-size: 28px;
  margin-bottom: 8px;
}

.before-after-sub,
.testimonials-sub {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 32px;
}

.ba-slider-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-light);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,153,204,0.2);
}

.ba-placeholder {
  text-align: center;
  color: var(--gray);
  font-size: 14px;
}

.ba-placeholder .ba-icon { font-size: 48px; margin-bottom: 12px; opacity: 0.4; }

.ba-filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.ba-pill {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--gray);
}

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

.testimonial-cards { display: flex; flex-direction: column; gap: 20px; }

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 24px;
  border-left: 3px solid var(--gold);
}

.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 10px; }

.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--dark-soft);
  font-style: italic;
  margin-bottom: 16px;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--gold-dark);
}

.author-info .name { font-size: 13px; font-weight: 700; }
.author-info .loc  { font-size: 12px; color: var(--gray); }

.review-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--gray);
  margin-top: 8px;
}

/* =============================================
   BEFORE / AFTER GRID
   ============================================= */
.ba-grid { display: flex; flex-direction: column; gap: 10px; width: 100%; }

.ba-pair {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-light);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  height: 200px;
  background: var(--gray-light);
}

.ba-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--gray-light);
}

.ba-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,0.55);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ba-label.after { background: rgba(0,153,204,0.8); }

.ba-caption {
  padding: 8px 12px;
  font-size: 12px;
  color: var(--gray);
  background: var(--cream);
  margin: 0;
}

/* =============================================
   BOOKING CTA BANNER
   ============================================= */
.booking-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #001E4A 100%);
  position: relative;
  overflow: hidden;
}

.booking-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(0,153,204,0.08);
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.booking-text .section-label { margin-bottom: 8px; }

.booking-text h2 {
  color: var(--white);
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 12px;
}

.booking-text p { color: rgba(255,255,255,0.65); font-size: 15px; }

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.booking-actions .btn { white-space: nowrap; }

.whatsapp-btn {
  background: #25D366;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  background: #1ea952;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

.phone-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  transition: var(--transition);
}
.phone-link:hover {
  border-color: rgba(255,255,255,0.6);
  color: white;
}

/* =============================================
   BLOG PREVIEW
   ============================================= */
.blog-preview { background: var(--cream); }

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.blog-card-img {
  height: 200px;
  background: var(--gray-light);
  overflow: hidden;
}

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

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

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

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-light);
  padding: 3px 10px;
  border-radius: 50px;
}

.blog-date { font-size: 12px; color: var(--gray); }

.blog-card-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body p { font-size: 14px; color: var(--gray); margin-bottom: 16px; }

.read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-mark { margin-bottom: 16px; }

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.55);
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}

.footer-contact-item span:first-child { color: var(--gold); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-bottom p { color: rgba(255,255,255,0.4); }

.footer-cert {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cert-badge {
  padding: 4px 12px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50px;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* =============================================
   BLOG PAGE
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #001E4A 100%);
  padding: 80px 0;
  text-align: center;
}

.page-hero h1 { color: var(--white); font-size: clamp(32px, 5vw, 52px); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.65); font-size: 17px; }

.page-hero-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

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

.blog-filter-bar {
  background: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 72px;
  z-index: 100;
}

.filter-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-label { font-size: 13px; font-weight: 600; color: var(--gray); margin-right: 8px; }

.filter-pill {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--dark-soft);
}

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

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.blog-posts { display: flex; flex-direction: column; gap: 32px; }

.blog-post-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.blog-post-img {
  height: 200px;
  background: var(--gray-light);
  overflow: hidden;
}

.blog-post-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-post-body {
  padding: 28px 28px 28px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-read-time { font-size: 12px; color: var(--gray); }

.blog-post-body h2 { font-size: 22px; margin: 12px 0 10px; line-height: 1.4; }
.blog-post-body h2 a:hover { color: var(--gold); }

.blog-post-body p { font-size: 14px; color: var(--gray); margin-bottom: 20px; }

.author-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
}

.author-chip img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-light);
}

/* Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 28px; position: sticky; top: 140px; }

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.sidebar-widget h3 {
  font-size: 16px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-light);
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--dark), #2D2416);
  color: white;
  text-align: center;
}

.sidebar-cta h3 { color: white; border-color: rgba(201,169,110,0.3); }
.sidebar-cta p  { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 20px; }

.popular-posts { display: flex; flex-direction: column; gap: 16px; }

.popular-post {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.popular-num {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--gold-light);
  line-height: 1;
  flex-shrink: 0;
}

.popular-post h4 { font-size: 14px; line-height: 1.4; margin-bottom: 4px; }
.popular-post h4 a:hover { color: var(--gold); }
.popular-post .popular-cat { font-size: 12px; color: var(--gold); font-weight: 600; }

.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }

.tag-chip {
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  background: var(--cream);
  color: var(--dark-soft);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  cursor: pointer;
}

.tag-chip:hover {
  background: var(--gold-light);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.newsletter-form { display: flex; flex-direction: column; gap: 12px; }

.newsletter-form p { font-size: 13px; color: var(--gray); margin-bottom: 4px; }

.newsletter-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-quick-channels {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-light);
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.channel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  cursor: pointer;
}

.channel-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,153,204,0.18);
  transform: translateY(-3px);
}

.channel-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}

.channel-card h3 { font-size: 15px; margin-bottom: 6px; }
.channel-card p  { font-size: 13px; color: var(--gray); }

.channel-card.whatsapp .channel-icon { background: #dcfce7; }
.channel-card.phone    .channel-icon { background: var(--teal-light); }
.channel-card.email    .channel-icon { background: var(--pink); }
.channel-card.instagram .channel-icon { background: #fce7f3; }

.contact-main { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h2 { font-size: 28px; margin-bottom: 8px; }
.contact-form-card > p { font-size: 14px; color: var(--gray); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-soft);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: var(--cream);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.lang-toggle {
  display: flex;
  gap: 8px;
}

.lang-opt {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: var(--cream);
}

.lang-opt.active,
.lang-opt:hover {
  border-color: var(--gold);
  background: var(--gold-light);
  color: var(--gold-dark);
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray);
  margin-top: -8px;
  margin-bottom: 24px;
}

.submit-btn { width: 100%; justify-content: center; padding: 16px; font-size: 14px; }

.contact-info-col { display: flex; flex-direction: column; gap: 24px; }

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.info-card h3 { font-size: 16px; margin-bottom: 16px; }

.map-embed {
  height: 220px;
  background: var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
}

.map-embed iframe { width: 100%; height: 100%; border: 0; }

.info-list { display: flex; flex-direction: column; gap: 14px; }

.info-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--dark-soft);
}

.info-item .info-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item strong { display: block; font-weight: 600; margin-bottom: 2px; }
.info-item span   { color: var(--gray); font-size: 13px; }

.faq-section { background: var(--white); }

.faq-container { max-width: 800px; margin: 0 auto; }
.faq-container .section-title,
.faq-container .section-subtitle { text-align: center; margin: 0 auto 48px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: rgba(0,153,204,0.4); }

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

.faq-question:hover { background: var(--cream); }

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--gold); color: white; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .social-proof-grid { gap: 40px; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .channels-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section-padding { padding: 56px 0; }
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .nav-cta .nav-phone { display: none; }
  .hero-content { padding: 80px 0; }
  .social-proof-grid { grid-template-columns: 1fr; }
  .booking-inner { grid-template-columns: 1fr; gap: 32px; }
  .booking-actions { align-items: flex-start; }
  .blog-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .blog-post-card { grid-template-columns: 1fr; }
  .blog-post-img { height: 180px; }
  .blog-post-body { padding: 24px; }
  .channels-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .channels-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.bg-cream    { background: var(--cream); }
.bg-dark     { background: var(--dark); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }

/* ─── Social Share Bar ──────────────────────────────────── */
.share-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
}

.share-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray);
  margin-right: 4px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  line-height: 1;
}
.share-btn:hover { opacity: .85; transform: translateY(-1px); }

.share-fb { background: #1877F2; color: #fff; }
.share-x  { background: #000;    color: #fff; }
.share-wa { background: #25D366; color: #fff; }
.share-li { background: #0A66C2; color: #fff; }
.share-copy { background: var(--cream); color: var(--dark); border: 1.5px solid var(--gray-light); }
