/* ===== YogaCop Main Stylesheet ===== */

:root {
  --dark: #171721;
  --dark-secondary: #12121A;
  --primary: #6E83A8;
  --primary-dark: #4A5D7E;
  --accent: #C47850;
  --accent-light: #E09A74;
  --light: #FFF9F4;
  --text: #2B2B35;
  --text-light: #E0DFEA;
  --text-muted: #6E6E7A;
  --section-alt: #F0EBE3;
  --card-bg: #FFFFFF;
  --border: #D8D3CB;
  --border-light: #E8E3DC;
  --success: #5C9A6E;
  --nav-bg: #171721;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== NAVIGATION ===== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: var(--nav-bg);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.3s ease;
}

.main-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--light);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color 0.2s ease;
}

.nav-logo:hover {
  color: var(--accent-light);
}

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

.nav-link {
  color: #B0B0C0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--light);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--light);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 1px;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero-section {
  padding: 140px 24px 100px;
  background-color: var(--dark);
  background-image:
    radial-gradient(ellipse at 20% 50%, #1E1E38 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, #1A1A2E 0%, transparent 50%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(196, 120, 80, 0.15);
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(196, 120, 80, 0.3);
  width: fit-content;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--light);
  letter-spacing: -1px;
}

.hero-text {
  font-size: 17px;
  color: #B0B0C0;
  line-height: 1.75;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #1E1E2E;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 32px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-4px);
  border: 1px solid rgba(196, 120, 80, 0.4);
}

.hero-card-icon {
  flex-shrink: 0;
}

.hero-card-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-card-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--light);
  line-height: 1;
}

.hero-card-label {
  font-size: 14px;
  color: #9090A0;
  font-weight: 500;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  line-height: 1;
}

.btn-primary {
  background-color: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}

.btn-primary:hover {
  background-color: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 120, 80, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--light);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  border-color: var(--light);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== SECTIONS ===== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  background: rgba(196, 120, 80, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

.section-intro {
  max-width: 680px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 24px;
  background-color: var(--light);
}

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

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: var(--section-alt);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-light);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-content .section-tag {
  align-self: flex-start;
}

.about-content .section-title {
  font-size: 34px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  padding: 28px;
  background-color: var(--section-alt);
  border-radius: 16px;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.about-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.about-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 100px 24px;
  background-color: var(--section-alt);
}

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

.service-card {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}

.service-icon {
  width: 56px;
  height: 56px;
  background-color: var(--section-alt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.service-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 100px 24px;
  background-color: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  gap: 18px;
  padding: 28px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.feature-marker {
  flex-shrink: 0;
  margin-top: 2px;
  width: 32px;
  height: 32px;
  background: rgba(196, 120, 80, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 24px;
  background-color: var(--dark);
  background-image:
    radial-gradient(ellipse at 80% 20%, #1E1E38 0%, transparent 40%),
    radial-gradient(ellipse at 20% 80%, #1A1A2E 0%, transparent 40%);
}

.contact-section .section-tag {
  color: var(--accent-light);
}

.contact-section .section-title {
  color: var(--light);
}

.contact-section .section-text {
  color: #B0B0C0;
}

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

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

.contact-info .section-tag {
  align-self: flex-start;
}

.contact-details {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #9090A0;
}

.contact-value {
  font-size: 16px;
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

a.contact-value:hover {
  color: var(--accent-light);
}

.contact-address {
  line-height: 1.6;
}

/* ===== FORM ===== */
.contact-form {
  background-color: #1E1E2E;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #C0C0D0;
  letter-spacing: 0.3px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  font-family: inherit;
  color: var(--light);
  background-color: #161626;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.form-input::placeholder {
  color: #606070;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 120, 80, 0.15);
}

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

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--dark-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--light);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.footer-desc {
  font-size: 15px;
  color: #808090;
  line-height: 1.7;
  max-width: 380px;
}

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

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

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 15px;
  color: #808090;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #606070;
}

/* ===== SCROLL ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FORM RESULT ===== */
.form-result {
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  display: none;
}

.form-result.success {
  display: block;
  background: rgba(92, 154, 110, 0.15);
  color: var(--success);
  border: 1px solid rgba(92, 154, 110, 0.3);
}

.form-result.error {
  display: block;
  background: rgba(196, 120, 80, 0.12);
  color: var(--accent-light);
  border: 1px solid rgba(196, 120, 80, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    flex-direction: row;
    gap: 16px;
  }

  .hero-card {
    flex: 1;
  }

  .hero-title {
    font-size: 38px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-placeholder {
    aspect-ratio: 16 / 9;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background-color: var(--nav-bg);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    padding: 12px 16px;
    font-size: 16px;
    display: block;
  }

  .hero-section {
    padding: 120px 20px 80px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-visual {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .about-section,
  .services-section,
  .features-section,
  .contact-section {
    padding: 70px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-badge {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .hero-card-number {
    font-size: 26px;
  }

  .section-title {
    font-size: 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}
