/* ===== FONTS ===== */
@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/montserrat-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/montserrat-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ===== CSS VARIABLES ===== */
:root {
  --color-white: #FFFFFF;
  --color-pink: #F0C5CF;
  --color-plum: #726072;
  --color-deep-purple: #5A2742;
  --color-light-pink: #f8e8ec;
  --border-radius: 20px;
}

/* ===== RESET & GLOBAL STYLES ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-white);
  color: var(--color-deep-purple);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 1.125rem, 1.25rem);
  font-weight: 500;
  line-height: 1.6;
  text-wrap: balance;
  width: 100%;
}

#main-content {
  margin-top: 92px;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
  width: 100%;
}

.medium-content {
  margin: 0 auto;
  max-width: 800px;
}

.wide-content {
  margin: 0 auto;
  max-width: 900px;
}

/* ===== LINKS ===== */
a {
  color: var(--color-deep-purple);
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}

.cta-content a {
  color: var(--color-white);
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
  background: var(--color-deep-purple);
  color: var(--color-white);
  font-weight: 600;
  left: -9999px;
  padding: 0.5rem 1rem;
  position: absolute;
  text-decoration: none;
  top: 0;
  z-index: 1000;
}

.skip-link:focus {
  left: 0;
}

.btn:focus,
.footer-contact-item:focus {
  outline: 3px solid var(--color-deep-purple);
  outline-offset: 2px;
}

/* ===== HEADER ===== */
header {
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  left: 0;
  padding: 1rem 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: transform 0.3s ease;
  z-index: 100;
}

@media (max-width: 768px) {
  header.header-hidden {
    transform: translateY(-100%);
  }
}

.header-bar {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.header-left {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.header-logo {
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.2));
  height: 60px;
  width: auto;
}

.header-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

/* Header Navigation */
.header-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  border-radius: var(--border-radius);
  color: var(--color-deep-purple);
  font-size: 0.89rem;
  font-weight: 600;
  padding: 0.44rem 0.89rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-nav a:hover,
.header-nav a:focus {
  background-color: var(--color-pink);
  color: var(--color-deep-purple);
}

.header-nav a:focus {
  outline: 3px solid var(--color-deep-purple);
  outline-offset: 2px;
}

/* ===== SECTIONS ===== */
section {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

section:nth-child(even) {
  background: linear-gradient(135deg, var(--color-light-pink) 0%, rgba(255, 255, 255, 0.5) 100%);
}

section:nth-child(odd) {
  background-color: var(--color-white);
}

/* ===== HEADINGS ===== */
.section-heading {
  color: var(--color-deep-purple);
  font-size: clamp(1.6rem, calc(1.42rem + 1vw), 2.22rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2.67rem;
  position: relative;
  text-align: center;
}

.section-heading::after {
  background: linear-gradient(90deg, var(--color-pink), var(--color-plum));
  border-radius: 2px;
  bottom: -10px;
  content: '';
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 60px;
}

.subsection-heading {
  color: var(--color-deep-purple);
  font-size: clamp(1.16rem, calc(0.98rem + 0.8vw), 1.6rem);
  font-weight: 600;
  margin-bottom: 1.78rem;
  position: relative;
  text-align: center;
}

.subsection-heading::after {
  background: linear-gradient(90deg, var(--color-pink), var(--color-plum));
  border-radius: 2px;
  bottom: -8px;
  content: '';
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 40px;
}

h2 {
  color: var(--color-deep-purple);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

/* ===== HERO SECTION ===== */
section.hero-section {
  align-items: center;
  background: linear-gradient(rgba(90, 39, 66, 0.7), rgba(114, 96, 114, 0.7)), url('assets/images/hero_bg.jpeg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  min-height: 50vh;
  position: relative;
}

.hero-overlay {
  align-items: center;
  display: flex;
  height: 100%;
  width: 100%;
}

.hero-content {
  color: var(--color-white);
  margin: 0 auto;
  padding: 4rem 0;
  text-align: center;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: clamp(2.22rem, calc(1.78rem + 2vw), 3.11rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.33rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: clamp(0.98rem, calc(0.89rem + 0.5vw), 1.16rem);
  margin-bottom: 0.56rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ===== ABOUT SECTION ===== */
.about-intro {
  margin: 0 auto;
  text-align: center;
}

.highlight-text {
  color: var(--color-deep-purple);
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.33rem;
}

.description-text {
  color: var(--color-plum);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-text {
  color: var(--color-deep-purple);
  font-size: 1.07rem;
  font-style: italic;
  font-weight: 600;
  margin-top: 1.78rem;
}

.about-company {
  margin: 0 auto 3rem;
  text-align: center;
}

.about-content {
  line-height: 1.8;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  margin-bottom: 1.5rem;
}

/* ===== VALUES/SERVICES SECTION ===== */
.values-section {
  margin: 4rem 0 4rem;
  text-align: center;
}

.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px rgba(90, 39, 66, 0.1);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-icon {
  align-items: center;
  display: flex;
  font-size: 1.33rem;
  height: 3.33rem;
  justify-content: center;
  margin: 0 auto 1.33rem;
  width: 3.33rem;
}

.service-card .service-card-heading {
  margin-bottom: 0.5rem;
}

/* ===== PROCESS STEPS SECTION ===== */
.process-steps {
  margin-top: 3rem;
}

.step-item {
  align-items: flex-start;
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: 0 3px 15px rgba(90, 39, 66, 0.08);
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
  box-shadow: 0 5px 20px rgba(90, 39, 66, 0.15);
  transform: translateY(-2px);
}

.step-number {
  align-items: center;
  background: linear-gradient(135deg, var(--color-deep-purple), var(--color-plum));
  border-radius: 50%;
  color: var(--color-white);
  display: flex;
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 700;
  height: 3rem;
  justify-content: center;
  width: 3rem;
}

.step-content h3 {
  color: var(--color-deep-purple);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--color-plum);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== CTA SECTION ===== */
.cta-section {
  align-items: center;
  background: var(--color-deep-purple) !important;
  display: flex;
  position: relative;
}

.cta-overlay {
  align-items: center;
  display: flex;
  height: 100%;
  width: 100%;
}

.cta-content {
  color: var(--color-white);
  margin: 0 auto;
  padding: 2rem 0;
  text-align: center;
}

.cta-content h2 {
  color: var(--color-white);
  font-size: clamp(1.78rem, calc(1.33rem + 2.5vw), 2.67rem);
  font-weight: 600;
  margin-bottom: 1.33rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content h2::after {
  display: none;
}

.cta-content p {
  font-size: clamp(0.89rem, calc(0.8rem + 0.5vw), 1.07rem);
  margin-bottom: 2.22rem;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

/* ===== PRICING SECTION ===== */
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0 auto;
}

.price-row {
  align-items: center;
  background-color: #fefcfc;
  border: 1px solid rgba(90, 39, 66, 0.12);
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(90, 39, 66, 0.06);
  display: flex;
  justify-content: space-between;
  padding: clamp(1rem, calc(0.8rem + 1vw), 1.5rem) clamp(1rem, calc(0.5rem + 2vw), 2rem);
  transition: all 0.3s ease;
}

.price-row:nth-child(even) {
  background-color: #fdf2f5;
  border-color: rgba(90, 39, 66, 0.15);
}

.price-row:hover {
  border-color: var(--color-plum);
  box-shadow: 0 4px 15px rgba(90, 39, 66, 0.12);
  transform: translateY(-1px);
}

.price-info {
  flex: 1;
}

.price-info h3 {
  color: var(--color-deep-purple);
  font-size: clamp(0.89rem, calc(0.8rem + 0.4vw), 1.07rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.22rem 0;
}

.price-description {
  color: var(--color-plum);
  font-size: clamp(0.67rem, calc(0.62rem + 0.2vw), 0.78rem);
  line-height: 1.3;
  margin: 0;
  opacity: 0.8;
}

.price {
  color: var(--color-deep-purple);
  font-size: clamp(1.07rem, calc(0.89rem + 0.9vw), 1.33rem);
  font-weight: 700;
  margin: 0;
  min-width: fit-content;
}

/* ===== DISCOUNT SECTION ===== */
.discount-info {
  background: linear-gradient(135deg, var(--color-deep-purple), var(--color-plum));
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(90, 39, 66, 0.2);
  margin-top: 3rem;
  padding: 2.5rem;
  text-align: center;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discount-info h3 {
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.33rem;
}

.discount-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.discount-item {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
}

.discount-amount {
  color: var(--color-white);
  font-size: 1.33rem;
  font-weight: 700;
}

.discount-desc {
  color: var(--color-white);
  font-size: 0.89rem;
  opacity: 0.9;
}

/* ===== BUTTONS ===== */
.btn,
a.btn {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 30px;
  color: var(--color-deep-purple);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 600;
  gap: 0.44rem;
  justify-content: center;
  letter-spacing: 0.5px;
  min-width: 11.11rem;
  padding: 0.89rem 1.67rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn:hover,
a.btn:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px);
}

.btn-primary,
a.btn-primary {
  background-color: var(--color-pink);
  border-color: var(--color-pink);
  color: var(--color-deep-purple);
}

.btn-primary:hover,
a.btn-primary:hover {
  background-color: var(--color-deep-purple);
  border-color: var(--color-deep-purple);
  color: var(--color-white);
}

.btn-outline,
a.btn-outline {
  background-color: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-outline:hover,
a.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-deep-purple);
}

.btn-light,
a.btn-light {
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-deep-purple);
}

.btn-light:hover,
a.btn-light:hover {
  background-color: var(--color-pink);
  border-color: var(--color-pink);
  color: var(--color-deep-purple);
}

.btn-outline-dark,
a.btn-outline-dark {
  background-color: transparent;
  border-color: var(--color-deep-purple);
  color: var(--color-deep-purple);
}

.btn-outline-dark:hover,
a.btn-outline-dark:hover {
  background-color: var(--color-deep-purple);
  color: var(--color-white);
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--color-deep-purple);
  color: var(--color-white);
  padding: 2rem 0;
}

.footer-content {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.footer-logo-section {
  align-items: center;
  display: flex;
}

.footer-logo {
  filter: brightness(0) invert(1);
  height: 40px;
  width: auto;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-contact-item {
  align-items: center;
  color: var(--color-white);
  display: flex;
  font-size: 0.89rem;
  font-weight: 600;
  gap: 0.44rem;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
}

/* ===== BOTTOM NAVIGATION ===== */
.bottom-nav {
  display: none;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

.no-js .fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

/* ===== PRINT STYLES ===== */
@media print {
  .fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }

  header,
  .bottom-nav,
  footer {
    display: none !important;
  }

  section:nth-child(even) {
    background: none !important;
  }

  .cta-content,
  .cta-content h2,
  .cta-content a {
    color: var(--color-deep-purple) !important;
  }
}

/* ===== DESKTOP RESPONSIVE ===== */
@media (min-width: 1300px) {
  section.hero-section {
    background-position: center 30%;
  }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  body {
    font-size: clamp(0.875rem, 1rem, 1.125rem);
    padding-bottom: 59px;
  }

  #main-content {
    margin-top: 72px;
  }

  .header-nav {
    display: none;
  }

  .header-bar {
    justify-content: center;
  }

  .header-logo {
    height: 40px;
  }

  .bottom-nav {
    background: var(--color-white);
    border-top: 1px solid rgba(90, 39, 66, 0.1);
    bottom: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    left: 0;
    padding: 6px 20px;
    position: fixed;
    right: 0;
    z-index: 100;
  }

  .bottom-nav ul {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    list-style: none;
    padding: 0;
    width: 100%;
  }

  .bottom-nav li {
    text-align: center;
  }

  .bottom-nav a {
    align-items: center;
    border-radius: 12px;
    color: var(--color-deep-purple);
    display: flex;
    flex-direction: column;
    font-size: 0.67rem;
    font-weight: 600;
    gap: 0.33rem;
    padding: 6px 6px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .bottom-nav a span {
    line-height: 1;
  }

  .bottom-nav a:hover,
  .bottom-nav a:focus {
    background-color: var(--color-pink);
    color: var(--color-deep-purple);
  }

  .bottom-nav a:focus {
    outline: 2px solid var(--color-deep-purple);
    outline-offset: 2px;
  }

  .bottom-nav-icon {
    height: 16px;
    width: 16px;
  }

  h2 {
    font-size: clamp(1.33rem, calc(1.16rem + 1vw), 1.78rem);
  }

  .highlight-text {
    font-size: clamp(0.89rem, calc(0.8rem + 0.4vw), 1.07rem);
  }

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

  .step-item {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .step-number {
    align-self: center;
  }

  .hero-buttons,
  .cta-buttons {
    align-items: center;
    flex-direction: column;
    gap: 1.25rem;
  }

  section.hero-section {
    background-position: 60% top;
    min-height: unset;
  }

  .hero-content {
    padding: 2rem 0;
  }

  .btn {
    max-width: 100%;
    padding: 0.75rem 1.25rem;
    width: 15.63rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .service-icon {
    font-size: 1.1rem;
    height: 2.75rem;
    width: 2.75rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  section.hero-section {
    background-position: 25% top;
  }

  .hero-content {
    padding: 1rem 0;
  }
}