/* ============================================
   LAZER CLINIC PERIHAN KURT
   Dark luxury + warm cream, heavy gold accents
   Layered/overlapping layout
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --black: #0a0a0a;
  --dark-brown: #1a1510;
  --gold: #d4af55;
  --gold-light: #e8cc7a;
  --gold-dark: #b8956a;
  --cream: #faf8f5;
  --cream-dark: #f0ece4;
  --text-dark: #2a2118;
  --text-muted: #8a7d6b;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 60px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 3px;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.6) 0%,
    rgba(10, 10, 10, 0.3) 40%,
    rgba(10, 10, 10, 0.7) 100%
  );
}

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

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 85, 0.4);
  padding: 8px 24px;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease 0.3s both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.5s both;
}

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

.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px auto;
  animation: fadeIn 1s ease 0.7s both;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  line-height: 1.8;
  max-width: 550px;
  margin: 0 auto 36px;
  animation: fadeInUp 1s ease 0.8s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 1s both;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 85, 0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1.2s both;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ============================================
   SERVICE CARDS (overlapping hero)
   ============================================ */

.services-overlap {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  padding: 0 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.services-overlap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--cream);
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-top: 3px solid var(--gold);
  transition: all 0.4s ease;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.service-card-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-card .gold-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.service-card .gold-link:hover {
  border-color: var(--gold);
}

/* ============================================
   SECTIONS - GENERAL
   ============================================ */

.section {
  padding: 100px 40px;
}

.section-dark {
  background: var(--black);
  color: #fff;
}

.section-cream {
  background: var(--cream);
}

.section-cream-dark {
  background: var(--cream-dark);
}

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

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title .gold {
  color: var(--gold);
  font-style: italic;
}

.section-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 30px;
}

.section-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
}

.section-dark .section-text {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   ABOUT PREVIEW (Home)
   ============================================ */

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-preview-image {
  position: relative;
}

.about-preview-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-preview-image::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 24px;
  text-align: center;
}

.experience-badge .number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================
   BEFORE / AFTER
   ============================================ */

.before-after-section {
  text-align: center;
}

.before-after-container {
  display: inline-flex;
  gap: 4px;
  margin-top: 50px;
  position: relative;
  max-width: 700px;
}

.before-after-container img {
  width: 50%;
  height: 400px;
  object-fit: cover;
}

.before-after-label {
  position: absolute;
  bottom: 20px;
  background: rgba(10, 10, 10, 0.8);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid rgba(212, 175, 85, 0.3);
}

.before-after-label.before {
  left: 20px;
}

.before-after-label.after {
  right: 20px;
}

.before-after-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--gold);
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: var(--dark-brown);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 85, 0.08) 0%, transparent 70%);
}

.cta-banner .section-title {
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner .section-text {
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.6);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 85, 0.3);
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 38px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.page-hero {
  background: var(--black);
  padding: 160px 40px 120px;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero .section-title {
  color: #fff;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(212, 175, 85, 0.15);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-image {
  position: relative;
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-detail-image:hover img {
  transform: scale(1.05);
}

.service-detail-image .gold-border {
  position: absolute;
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
  border: 1px solid rgba(212, 175, 85, 0.3);
  z-index: -1;
}

.service-detail-content h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
}

.service-detail-content .gold-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

.service-detail-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-features {
  list-style: none;
  margin-top: 20px;
}

.service-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(212, 175, 85, 0.2);
}

.stat {
  text-align: center;
}

.stat .number {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
}

.stat .label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.value-card {
  padding: 40px 30px;
  border: 1px solid rgba(212, 175, 85, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.value-card .icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(212, 175, 85, 0.15);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--text-muted);
}

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

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--cream-dark);
  border: 1px solid rgba(212, 175, 85, 0.15);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.map-container {
  margin-top: 40px;
  border: 1px solid rgba(212, 175, 85, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.5);
  padding: 60px 40px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 175, 85, 0.1);
}

.footer-brand .nav-logo-text {
  font-size: 22px;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 20px;
}

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

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

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 85, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 1.5s both;
}

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

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .services-overlap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-preview,
  .about-story,
  .service-detail,
  .service-detail.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-detail.reverse {
    direction: ltr;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 24px;
  }
  .navbar.scrolled {
    padding: 12px 24px;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 998;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 18px;
    color: #fff;
  }
  .nav-toggle {
    display: flex;
    z-index: 999;
  }
  .section {
    padding: 60px 20px;
  }
  .services-overlap {
    padding: 0 20px;
    margin-top: -50px;
  }
  .services-overlap-grid {
    grid-template-columns: 1fr;
  }
  .about-preview-image::before {
    display: none;
  }
  .experience-badge {
    right: 0;
    bottom: 0;
  }
  .before-after-container {
    flex-direction: column;
    max-width: 100%;
  }
  .before-after-container img {
    width: 100%;
    height: 250px;
  }
  .before-after-divider {
    width: 100%;
    height: 3px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .page-hero {
    padding: 140px 20px 80px;
  }
  .cta-banner {
    padding: 60px 20px;
  }
}
