/*
Theme Name: Nouzha Beauty Clinic
Theme URI: https://nouzhaclinic.ir
Author: Nouzha
Description: قالب اختصاصی کلینیک زیبایی نوژا
Version: 1.0
Text Domain: nouzha
*/

:root {
  --primary: #8a9a7b;
  --primary-dark: #6b7a5e;
  --primary-light: #c5d1b8;
  --bg: #f8f6f1;
  --text: #2c2c2c;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(0,0,0,0.07);
  --radius: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Vazirmatn', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.header {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between; height: 78px;
}

.logo-img { height: 50px; }

.nav { display: flex; gap: 32px; }
.nav a {
  text-decoration: none; color: var(--text); font-weight: 500; font-size: 15px; transition: 0.3s;
}
.nav a:hover, .nav a.active { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.insta-icon {
  color: var(--text); display: flex; transition: 0.3s;
}
.insta-icon:hover { color: var(--primary); }

.btn-header {
  background: var(--primary); color: white; padding: 10px 22px;
  border-radius: 50px; text-decoration: none; font-weight: 500; font-size: 14px; transition: 0.3s;
}
.btn-header:hover { background: var(--primary-dark); }

.menu-toggle { display: none; background: none; border: none; font-size: 26px; cursor: pointer; }

.hero {
  min-height: 100vh; padding-top: 78px;
  background: linear-gradient(135deg, #f4f1ea 0%, #e9efe3 50%, #dfe8d6 100%);
  display: flex; align-items: center;
}

.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 5.5vw, 3.8rem); font-weight: 700; line-height: 1.25;
  color: #2a2a2a; margin-bottom: 22px;
}

.hero-desc { font-size: 1.25rem; color: var(--primary-dark); margin-bottom: 12px; }
.hero-stat { font-size: 1.1rem; font-weight: 600; color: #555; margin-bottom: 40px; }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 36px; border-radius: 50px; text-decoration: none;
  font-weight: 600; font-size: 15px; transition: all 0.3s ease; border: none; cursor: pointer;
}
.btn.primary { background: var(--primary); color: white; }
.btn.primary:hover {
  background: var(--primary-dark); transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(138,154,123,0.35);
}
.btn.outline {
  background: transparent; color: var(--primary); border: 2px solid var(--primary);
}
.btn.outline:hover { background: var(--primary); color: white; }
.btn.full { width: 100%; }

.hero-visual { display: flex; justify-content: center; align-items: center; }

.logo-circle {
  width: 320px; height: 320px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1); border: 8px solid rgba(255,255,255,0.8);
}
.hero-logo { width: 220px; height: auto; }

.section { padding: 110px 0; }
.section-title { font-size: 2.4rem; text-align: center; color: var(--primary-dark); margin-bottom: 12px; }
.section-subtitle { text-align: center; color: #666; margin-bottom: 55px; font-size: 1.1rem; }

.services { background: white; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px;
}
.service-card {
  background: var(--bg); padding: 40px 28px; border-radius: var(--radius);
  text-align: center; transition: all 0.4s ease; border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-10px); box-shadow: var(--shadow); border-color: var(--primary-light);
}
.service-card .icon { font-size: 2.6rem; margin-bottom: 18px; }
.service-card h3 { font-size: 1.35rem; color: var(--primary-dark); margin-bottom: 12px; }

.about { background: linear-gradient(to left, #f0f4eb, #ffffff); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text p { margin-bottom: 18px; font-size: 1.1rem; color: #444; }

.about-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

.articles { background: white; }
.articles-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}
.article-card {
  background: var(--bg); border-radius: var(--radius); overflow: hidden; transition: 0.3s;
}
.article-card:hover { transform: translateY(-8px); }
.article-img { height: 200px; background: linear-gradient(45deg, #d4e0c8, #a8b89a); object-fit: cover; width: 100%; }
.article-body { padding: 26px; }
.article-body h3 { font-size: 1.25rem; color: var(--primary-dark); margin-bottom: 10px; }
.read-more { display: inline-block; margin-top: 14px; color: var(--primary); text-decoration: none; font-weight: 500; }

.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 40px; }
.contact-info {
  background: white; padding: 45px; border-radius: var(--radius); box-shadow: var(--shadow);
}
.info-box { margin-bottom: 30px; }
.info-box strong { display: block; color: var(--primary-dark); margin-bottom: 6px; font-size: 14px; }
.info-box a { color: var(--text); text-decoration: none; font-size: 1.25rem; font-weight: 600; }
.insta-link { display: inline-flex; align-items: center; gap: 8px; }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

.consultation-page {
  padding: 140px 0 100px;
  min-height: 100vh;
  background: linear-gradient(135deg, #f4f1ea 0%, #e9efe3 100%);
}

.form-wrapper {
  max-width: 580px; margin: 0 auto;
  background: white; border-radius: var(--radius);
  padding: 50px 40px; box-shadow: var(--shadow);
}

.form-header { text-align: center; margin-bottom: 40px; }
.form-header h1 { font-size: 2rem; color: var(--primary-dark); margin-bottom: 12px; }
.form-header p { color: #666; }

.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; margin-bottom: 8px; font-weight: 500; color: #444; font-size: 14px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px; border: 1.5px solid #e0e0e0;
  border-radius: 12px; font-family: inherit; font-size: 15px;
  transition: border-color 0.3s; background: #fafafa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--primary); background: white;
}

.form-success { text-align: center; padding: 30px 0; }
.success-icon {
  width: 70px; height: 70px; background: var(--primary); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 20px;
}
.form-success h3 { color: var(--primary-dark); margin-bottom: 10px; }
.form-success p { color: #666; margin-bottom: 25px; }

.footer { background: #2a2a2a; color: #ccc; padding-top: 70px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px;
}
.footer-logo { height: 55px; margin-bottom: 15px; filter: brightness(0) invert(1); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: #bbb; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--primary-light); }
.footer-contact a { display: block; color: #bbb; text-decoration: none; margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid #444; padding: 22px 0; text-align: center; font-size: 0.9rem; color: #888;
}

@media (max-width: 900px) {
  .nav {
    display: none; position: absolute; top: 78px; right: 0; left: 0;
    background: white; flex-direction: column; padding: 25px; gap: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  }
  .nav.active { display: flex; }
  .menu-toggle { display: block; }
  .header-actions { gap: 10px; }
  .hero-grid, .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { text-align: center; min-height: 90vh; }
  .hero-buttons { justify-content: center; }
  .logo-circle { width: 240px; height: 240px; margin-top: 30px; }
  .hero-logo { width: 160px; }
  .form-wrapper { padding: 35px 24px; }
  .about-photo { height: 320px; }
}