/* ================================================
   ES DENTAL GROUP — Landing Page Styles
   Brand: Gold #D4A520 | Dark #1A1A1A | White
   ================================================ */

:root {
  --gold: #D4A520;
  --gold-light: #F0DFA0;
  --gold-dark: #B8860B;
  --gold-glow: rgba(212, 165, 32, 0.12);
  --ink: #1A1A1A;
  --ink-2: #2D2D2D;
  --ink-3: #444;
  --gray: #777;
  --gray-light: #DDD;
  --bg: #F8F7F4;
  --white: #FFF;
  --green: #25D366;
  --red-soft: #E74C3C;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 16px rgba(0,0,0,.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);
  --transition: .3s ease;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--ink); background: var(--bg); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* === NAV === */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(26,26,26,.96); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(212,165,32,.1); }
.nav-inner { max-width: 1140px; margin: 0 auto; padding: 14px 24px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo img { height: 40px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.65); letter-spacing: .03em; transition: color var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--ink) !important; padding: 10px 24px !important; border-radius: 6px !important; font-weight: 700 !important; transition: all var(--transition) !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: white; margin: 5px 0; border-radius: 1px; transition: .3s; }

/* === HERO VIDEO === */
.hero-video { position: relative; height: 85vh; min-height: 500px; overflow: hidden; background: var(--ink); }
.hero-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: .65; }
.hero-video-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,26,26,.2) 0%, rgba(26,26,26,.75) 70%, rgba(26,26,26,.95) 100%); }
.hero-video-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px; }
.hero-label { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,165,32,.15); border: 1px solid rgba(212,165,32,.25); padding: 8px 20px; border-radius: 50px; font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 24px; }
.hero-video-content h1 { font-size: clamp(36px, 6vw, 64px); font-weight: 700; color: white; margin-bottom: 16px; max-width: 700px; }
.hero-video-content h1 span { color: var(--gold); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.6); max-width: 540px; margin-bottom: 36px; font-weight: 400; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 15px 32px; border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .02em; border: none; cursor: pointer; transition: all var(--transition); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,165,32,.3); }
.btn-outline-w { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.3); }
.btn-outline-w:hover { border-color: var(--gold); color: var(--gold); }
.btn-wa { background: var(--green); color: white; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); }

/* === STATS BAR === */
.stats-bar { background: var(--ink); border-top: 1px solid rgba(212,165,32,.15); }
.stats-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); }
.stat-item { padding: 28px 16px; text-align: center; border-right: 1px solid rgba(255,255,255,.06); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; font-weight: 500; }

/* === SECTIONS === */
.section { padding: 90px 24px; }
.section-white { background: var(--white); }
.section-dark { background: var(--ink); color: white; }
.container { max-width: 1140px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; padding: 6px 16px; background: var(--gold-glow); border-radius: 4px; }
.section-head h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; margin-bottom: 14px; }
.section-head h2 span { color: var(--gold); }
.section-dark .section-head h2 { color: white; }
.section-head p { font-size: 16px; color: var(--gray); max-width: 560px; margin: 0 auto; }

/* === STEPS === */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); border-top: 3px solid var(--gold); transition: all var(--transition); }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: var(--ink); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; }
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; }
.step-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* === TIRANA SLIDESHOW === */
.tirana-hero { position: relative; height: 500px; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(26,26,26,.8) 0%, rgba(26,26,26,.2) 60%); }
.slide-content { position: absolute; bottom: 60px; left: 0; right: 0; text-align: center; z-index: 2; padding: 0 24px; }
.slide-content h2 { font-size: clamp(28px, 4vw, 44px); color: white; margin-bottom: 12px; }
.slide-content h2 span { color: var(--gold); }
.slide-content p { font-size: 16px; color: rgba(255,255,255,.7); max-width: 500px; margin: 0 auto 24px; }
.slide-dots { display: flex; gap: 8px; justify-content: center; }
.slide-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.3); border: none; cursor: pointer; transition: all .3s; }
.slide-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }
.slide-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: white; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .3s; backdrop-filter: blur(4px); }
.slide-nav:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.slide-prev { left: 24px; }
.slide-next { right: 24px; }

/* === SPLIT LAYOUT === */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-img img { width: 100%; height: 440px; object-fit: cover; }
.split-text .section-tag { margin-bottom: 12px; }
.split-text h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 16px; }
.split-text h2 span { color: var(--gold); }
.split-text > p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 24px; }

/* === FEATURES === */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feat-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--bg); border-radius: var(--radius-sm); border: 1px solid rgba(0,0,0,.04); transition: background .2s; }
.feat-item:hover { background: var(--gold-glow); }
.feat-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--gold-glow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-icon svg { width: 16px; height: 16px; stroke: var(--gold-dark); fill: none; stroke-width: 2; }
.feat-label { font-size: 13px; font-weight: 700; }

/* === GALLERY === */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: white; transition: all var(--transition); }
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-card img { width: 100%; height: 280px; object-fit: contain; background: #f0f0ed; }
.gallery-card-body { padding: 16px 20px; }
.gallery-badge { display: inline-block; padding: 3px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 6px; }
.badge-after { background: #D1FAE5; color: #059669; }
.badge-before { background: #FFE0E0; color: #DC2626; }
.badge-patient { background: var(--gold-glow); color: var(--gold-dark); }
.gallery-card-body p { font-size: 13px; color: var(--gray); }

/* === PRICES === */
.price-table { max-width: 900px; margin: 0 auto; background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.price-header { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; padding: 16px 24px; background: var(--ink); }
.price-header span { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.price-header span:not(:first-child) { text-align: center; }
.price-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; padding: 18px 24px; align-items: center; border-bottom: 1px solid rgba(0,0,0,.05); transition: background .2s; }
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--gold-glow); }
.price-row .name { font-weight: 700; font-size: 15px; }
.price-row .old { text-align: center; color: var(--gray); text-decoration: line-through; font-size: 14px; }
.price-row .new { text-align: center; font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--gold-dark); }
.price-row .save { text-align: center; }
.price-row .save span { display: inline-block; padding: 3px 10px; background: #D1FAE5; color: #059669; font-size: 12px; font-weight: 700; border-radius: 4px; }
.price-note { text-align: center; font-size: 13px; color: var(--gray); margin-top: 20px; }

/* === TESTIMONIALS === */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--ink-2); border-radius: var(--radius); padding: 28px; border: 1px solid rgba(255,255,255,.06); }
.testi-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card blockquote { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.06); }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-glow); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--gold); font-size: 14px; }
.testi-name { font-weight: 700; font-size: 14px; color: white; }
.testi-loc { font-size: 12px; color: var(--gray); }

/* === FORM === */
.form-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.form-info h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 16px; }
.form-info h2 span { color: var(--gold); }
.form-info > p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 28px; }
.form-benefits { display: flex; flex-direction: column; gap: 14px; }
.form-benefit { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; }
.form-benefit svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2.5; flex-shrink: 0; }
.form-card { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-lg); border-top: 3px solid var(--gold); }
.form-card h3 { font-family: 'DM Sans', sans-serif; font-size: 22px; font-weight: 700; text-align: center; margin-bottom: 4px; }
.form-card .form-sub { text-align: center; font-size: 14px; color: var(--gray); margin-bottom: 24px; }
.form-urgency { background: var(--gold-glow); border: 1px solid var(--gold-light); border-radius: var(--radius-sm); padding: 10px; text-align: center; font-size: 13px; font-weight: 700; color: var(--gold-dark); margin-bottom: 20px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 12px; font-weight: 700; color: var(--ink-3); margin-bottom: 6px; letter-spacing: .03em; }
.fg input, .fg select { width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-light); border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--ink); background: var(--bg); transition: all .2s; -webkit-appearance: none; }
.fg input:focus, .fg select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); background: white; }
.fg input::placeholder { color: #BBB; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit { width: 100%; padding: 15px; background: var(--gold); color: var(--ink); border: none; border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: all var(--transition); margin-top: 4px; }
.form-submit:hover { background: var(--gold-dark); color: white; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,165,32,.3); }
.form-note { font-size: 11px; color: #AAA; text-align: center; margin-top: 10px; }
.form-note a { color: var(--gold-dark); }

/* === FINAL CTA === */
.final-cta { padding: 80px 24px; background: var(--ink); text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(212,165,32,.08), transparent 60%); }
.final-cta h2 { font-size: clamp(28px, 4vw, 44px); color: white; margin-bottom: 14px; position: relative; }
.final-cta h2 span { color: var(--gold); }
.final-cta p { font-size: 16px; color: rgba(255,255,255,.45); max-width: 460px; margin: 0 auto 32px; position: relative; }
.final-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* === FOOTER === */
.footer { background: var(--ink-2); padding: 48px 24px 20px; }
.footer-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.7; margin-top: 14px; max-width: 320px; }
.footer h4 { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-links a { display: block; font-size: 13px; color: rgba(255,255,255,.35); padding: 3px 0; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { max-width: 1140px; margin: 28px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.05); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p, .footer-bottom a { font-size: 11px; color: rgba(255,255,255,.2); }

/* === WHATSAPP FAB === */
.wa-fab { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 56px; height: 56px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .2s; animation: waPulse 2.5s ease infinite; }
.wa-fab:hover { transform: scale(1.1); }
.wa-fab svg { width: 26px; height: 26px; fill: white; }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)} 50%{box-shadow:0 4px 32px rgba(37,211,102,.6)} }

/* === ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(26,26,26,.98); padding: 20px 24px; gap: 14px; }
  .stats-inner { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(n+4) { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .split, .form-split { grid-template-columns: 1fr; gap: 36px; }
  .split-img video { height: 300px !important; }
  .gallery-grid, .testi-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .tirana-hero { height: 400px; }
  .hero-video { height: 90vh; }
  .hero-video video { object-position: center center; }
}
@media (max-width: 640px) {
  .steps-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .hero-btns, .final-btns { flex-direction: column; align-items: center; }
  .price-header, .price-row { grid-template-columns: 1fr; gap: 4px; text-align: left; padding: 16px 20px; }
  .price-header { display: none; }
  .price-row .old, .price-row .new, .price-row .save { text-align: left; }
  .price-row .name { font-size: 16px; margin-bottom: 4px; }
  .price-row .new { font-size: 18px; }
  .price-row .old { font-size: 13px; }
  .slide-nav { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-video { height: 100vh; min-height: 600px; }
  .gallery-card img { height: 220px; }
  .brands-section { gap: 24px !important; }
  .brands-section img { height: 60px !important; }
}
