 :root {
      --gold: hsl(42, 45%, 58%);
      --gold-light: hsl(42, 50%, 75%);
      --gold-dark: hsl(42, 55%, 42%);
      --black: hsl(0, 0%, 4%);
      --black-light: hsl(0, 0%, 10%);
      --gray-dark: hsl(0, 0%, 18%);
      --gray: hsl(0, 0%, 29%);
      --gray-light: hsl(0, 0%, 54%);
      --white: hsl(0, 0%, 100%);
      --off-white: hsl(40, 20%, 97%);
      --font-display: 'Cormorant Garamond', serif;
      --font-body: 'Montserrat', sans-serif;
      --section-padding: 120px;
      --container-width: 1400px;
      --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    html { scroll-behavior: smooth; }
    
    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.7;
      color: var(--gray-light);
      background-color: var(--black);
      overflow-x: hidden;
    }

    .container {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 40px;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-display);
      font-weight: 400;
      color: var(--white);
      line-height: 1.2;
    }

    p { color: var(--gray-light); }
    a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
    img { max-width: 100%; height: auto; display: block; }

    .section-label {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: inline-block;
    }

    .section-title {
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 300;
      margin-bottom: 30px;
    }

    .section-title span { color: var(--gold); font-style: italic; }
    
    .section-subtitle {
      font-size: 18px;
      max-width: 600px;
      line-height: 1.8;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 18px 40px;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: var(--transition-smooth);
    }

    .btn-primary {
      background: var(--gold);
      color: var(--black);
    }

    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 20px 40px hsla(42, 45%, 58%, 0.3);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1px solid var(--white);
    }

    .btn-outline:hover {
      background: var(--white);
      color: var(--black);
    }

    /* Hero Section */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      overflow: hidden;
    }

    .hero-slider {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 1s ease, visibility 1s ease;
    }

    .hero-slide.active {
      opacity: 1;
      visibility: visible;
    }

    .hero-slide-image {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.05);
      transition: transform 8s ease;
    }

    .hero-slide.active .hero-slide-image {
      transform: scale(1);
    }

    .hero-slide:nth-child(1) .hero-slide-image {
      background-image: linear-gradient(hsla(0,0%,0%,0.5), hsla(0,0%,0%,0.7)),
        url('salon-images/hero-1.jpg');
    }

    .hero-slide:nth-child(2) .hero-slide-image {
      background-image: linear-gradient(hsla(0,0%,0%,0.5), hsla(0,0%,0%,0.7)),
        url('salon-images/hero-2.jpg');
    }

    .hero-slide:nth-child(3) .hero-slide-image {
      background-image: linear-gradient(hsla(0,0%,0%,0.5), hsla(0,0%,0%,0.7)),
        url('salon-images/hero-3.jpg');
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.7);
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-top: 80px;
    }

    .hero-text {
      max-width: 800px;
      opacity: 0;
      transform: translateY(40px);
      animation: heroFadeIn 1s ease 0.5s forwards;
    }

    @keyframes heroFadeIn {
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-label {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 6px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 30px;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .hero-label::before {
      content: '';
      width: 60px;
      height: 1px;
      background: var(--gold);
    }

    .hero-title {
      font-size: clamp(48px, 8vw, 100px);
      font-weight: 300;
      color: var(--white);
      margin-bottom: 30px;
      line-height: 1.1;
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-description {
      font-size: 18px;
      color: #ffffff;
      max-width: 500px;
      margin-bottom: 50px;
      line-height: 1.9;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .slider-nav {
      position: absolute;
      bottom: 60px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 12px;
    }

    .slider-dot {
      width: 12px;
      height: 12px;
      border: 1px solid var(--white);
      background: transparent;
      cursor: pointer;
      transition: var(--transition-fast);
      position: relative;
    }

    .slider-dot::after {
      content: '';
      position: absolute;
      inset: 2px;
      background: var(--gold);
      transform: scale(0);
      transition: var(--transition-fast);
    }

    .slider-dot.active::after,
    .slider-dot:hover::after {
      transform: scale(1);
    }

    .slider-arrows {
      position: absolute;
      bottom: 60px;
      right: 40px;
      z-index: 10;
      display: flex;
      gap: 10px;
    }

    .slider-arrow {
      width: 60px;
      height: 60px;
      border: 1px solid hsla(0,0%,100%,0.3);
      background: transparent;
      color: var(--white);
      cursor: pointer;
      transition: var(--transition-fast);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .slider-arrow:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--black);
    }

    .slider-arrow svg {
      width: 24px;
      height: 24px;
    }

    /* Authority Section */
    .authority {
      padding: var(--section-padding) 0;
      background: var(--black-light);
    }

    .authority-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }

    .authority-card {
      text-align: center;
      padding: 50px 30px;
      background: var(--black);
      border: 1px solid var(--gray-dark);
      transition: var(--transition-smooth);
      position: relative;
      overflow: hidden;
    }

    .authority-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transition: var(--transition-smooth);
    }

    .authority-card:hover {
      transform: translateY(-10px);
      border-color: var(--gold);
    }

    .authority-card:hover::before {
      transform: scaleX(1);
    }

    .authority-icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--gold);
      color: var(--gold);
      transition: var(--transition-smooth);
    }

    .authority-card:hover .authority-icon {
      background: var(--gold);
      color: var(--black);
    }

    .authority-icon svg {
      width: 32px;
      height: 32px;
    }

    .authority-number {
      font-family: var(--font-display);
      font-size: 48px;
      color: var(--gold);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .authority-title {
      font-size: 22px;
      margin-bottom: 15px;
      color: var(--white);
    }

    .authority-text {
      font-size: 14px;
      line-height: 1.8;
    }

    /* Problem Solution Section */
    .problem-solution {
      padding: var(--section-padding) 0;
      background: var(--black);
    }

    .ps-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 80px;
    }

    .ps-grid {
      display: grid;
      grid-template-columns: 1fr 100px 1fr;
      gap: 40px;
      align-items: center;
    }

    .ps-card {
      padding: 50px;
      border-radius: 4px;
    }

    .ps-card.problem {
      background: linear-gradient(135deg, hsla(0, 50%, 20%, 0.3), hsla(0, 0%, 10%, 1));
      border: 1px solid hsla(0, 50%, 30%, 0.3);
    }

    .ps-card.solution {
      background: linear-gradient(135deg, hsla(42, 50%, 20%, 0.3), hsla(0, 0%, 10%, 1));
      border: 1px solid hsla(42, 45%, 58%, 0.3);
    }

    .ps-card h3 {
      font-size: 28px;
      margin-bottom: 30px;
    }

    .ps-card.problem h3 { color: hsl(0, 60%, 65%); }
    .ps-card.solution h3 { color: var(--gold); }

    .ps-card ul {
      list-style: none;
    }

    .ps-card li {
      padding: 15px 0;
      border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .ps-card li:last-child { border-bottom: none; }

    .ps-card li svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    .ps-card.problem li svg { color: hsl(0, 60%, 65%); }
    .ps-card.solution li svg { color: var(--gold); }

    .ps-divider {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .ps-divider-line {
      width: 1px;
      height: 100px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    }

    .ps-divider-text {
      font-family: var(--font-display);
      font-size: 24px;
      font-style: italic;
      color: var(--gold);
    }

    /* About Section */
    .about {
      padding: var(--section-padding) 0;
      background: var(--black-light);
      overflow: hidden;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }

    .about-images {
      position: relative;
      height: 600px;
    }

    .about-image {
      position: absolute;
      overflow: hidden;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform var(--transition-smooth);
    }

    .about-image:hover img {
      transform: scale(1.05);
    }

    .about-image-1 {
      width: 350px;
      height: 450px;
      top: 0;
      left: 0;
      z-index: 2;
    }

    .about-image-2 {
      width: 300px;
      height: 380px;
      bottom: 0;
      right: 0;
      z-index: 1;
      border: 8px solid var(--black-light);
    }

    .about-badge {
      position: absolute;
      bottom: 100px;
      left: 280px;
      z-index: 3;
      width: 150px;
      height: 150px;
      background: var(--gold);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--black);
    }

    .about-badge-number {
      font-family: var(--font-display);
      font-size: 48px;
      font-weight: 600;
      line-height: 1;
    }

    .about-badge-text {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-top: 5px;
    }

    .about-content {
      padding-left: 40px;
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-top: 50px;
      padding-top: 50px;
      border-top: 1px solid var(--gray-dark);
    }

    .about-feature {
      display: flex;
      gap: 15px;
    }

    .about-feature-icon {
      width: 50px;
      height: 50px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: hsla(42, 45%, 58%, 0.1);
      color: var(--gold);
    }

    .about-feature-icon svg {
      width: 24px;
      height: 24px;
    }

    .about-feature-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 8px;
    }

    .about-feature-text {
      font-size: 14px;
      line-height: 1.7;
    }

    /* Services Section */
    .services {
      padding: var(--section-padding) 0;
      background: var(--black);
    }

    .services-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 80px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

    .service-card {
      position: relative;
      height: 450px;
      overflow: hidden;
      cursor: pointer;
    }

    .service-image {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform var(--transition-smooth);
    }

    .service-card:hover .service-image {
      transform: scale(1.1);
    }

    .service-card:nth-child(1) .service-image { background-image: url('salon-images/hair-styling.jpg'); }
    .service-card:nth-child(2) .service-image { background-image: url('salon-images/makeup.jpg'); }
    .service-card:nth-child(3) .service-image { background-image: url('salon-images/body-care.jpg'); }
    .service-card:nth-child(4) .service-image { background-image: url('salon-images/henna.jpg'); }

    .service-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, hsla(0,0%,4%,0.95) 0%, hsla(0,0%,4%,0.3) 50%, transparent 100%);
      transition: var(--transition-smooth);
    }

    .service-card:hover .service-overlay {
      background: linear-gradient(to top, hsla(0,0%,4%,0.98) 0%, hsla(0,0%,4%,0.6) 60%, hsla(0,0%,4%,0.3) 100%);
    }

    .service-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 30px;
      z-index: 2;
    }

    .service-icon {
      width: 50px;
      height: 50px;
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      margin-bottom: 20px;
      transition: var(--transition-fast);
    }

    .service-card:hover .service-icon {
      background: var(--gold);
      color: var(--black);
    }

    .service-icon svg {
      width: 24px;
      height: 24px;
    }

    .service-title {
      font-size: 24px;
      margin-bottom: 10px;
      color: var(--white);
    }

    .service-text {
      font-size: 14px;
      line-height: 1.7;
      opacity: 0;
      transform: translateY(20px);
      transition: var(--transition-smooth);
    }

    .service-card:hover .service-text {
      opacity: 1;
      transform: translateY(0);
    }

    /* Case Studies Section */
    .case-studies {
      padding: var(--section-padding) 0;
      background: var(--black-light);
    }

    .case-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 80px;
    }

    .case-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .case-card {
      background: var(--black);
      border: 1px solid var(--gray-dark);
      overflow: hidden;
      transition: var(--transition-smooth);
    }

    .case-card:hover {
      border-color: var(--gold);
      transform: translateY(-10px);
    }

    .case-image {
      height: 250px;
      overflow: hidden;
    }

    .case-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform var(--transition-smooth);
    }

    .case-card:hover .case-image img {
      transform: scale(1.1);
    }

    .case-content {
      padding: 30px;
    }

    .case-tag {
      display: inline-block;
      padding: 5px 15px;
      background: hsla(42, 45%, 58%, 0.1);
      color: var(--gold);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 15px;
    }

    .case-title {
      font-size: 22px;
      margin-bottom: 15px;
    }

    .case-text {
      font-size: 14px;
      line-height: 1.7;
    }

    /* Reviews Section */
    .reviews {
      padding: var(--section-padding) 0;
      background: var(--black);
    }

    .reviews-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 80px;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .review-card {
      background: var(--black-light);
      border: 1px solid var(--gray-dark);
      padding: 40px;
      transition: var(--transition-smooth);
    }

    .review-card:hover {
      border-color: var(--gold);
    }

    .review-stars {
      display: flex;
      gap: 5px;
      margin-bottom: 25px;
    }

    .review-stars svg {
      width: 18px;
      height: 18px;
      fill: var(--gold);
      color: var(--gold);
    }

    .review-text {
      font-size: 16px;
      line-height: 1.8;
      font-style: italic;
      margin-bottom: 30px;
      color: var(--off-white);
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .review-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 20px;
      color: var(--black);
      font-weight: 600;
    }

    .review-name {
      font-weight: 600;
      color: var(--white);
      margin-bottom: 5px;
    }

    .review-role {
      font-size: 12px;
      color: var(--gray-light);
    }

    /* Blog Section */
    .blog {
      padding: var(--section-padding) 0;
      background: var(--black-light);
    }

    .blog-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 80px;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .blog-card {
      background: var(--black);
      border: 1px solid var(--gray-dark);
      overflow: hidden;
      transition: var(--transition-smooth);
    }

    .blog-card:hover {
      border-color: var(--gold);
    }

    .blog-image {
      height: 220px;
      overflow: hidden;
    }

    .blog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform var(--transition-smooth);
    }

    .blog-card:hover .blog-image img {
      transform: scale(1.1);
    }

    .blog-content {
      padding: 30px;
    }

    .blog-date {
      font-size: 12px;
      color: var(--gold);
      margin-bottom: 15px;
      font-weight: 600;
      letter-spacing: 1px;
    }

    .blog-title {
      font-size: 20px;
      margin-bottom: 15px;
      line-height: 1.4;
    }

    .blog-excerpt {
      font-size: 14px;
      line-height: 1.7;
    }

    /* FAQ Section */
    .faq {
      padding: var(--section-padding) 0;
      background: var(--black);
    }

    .faq-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 80px;
    }

    .faq-grid {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--gray-dark);
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 25px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      text-align: left;
    }

    .faq-question h4 {
      font-size: 18px;
      color: var(--white);
      transition: color var(--transition-fast);
    }

    .faq-question:hover h4 {
      color: var(--gold);
    }

    .faq-icon {
      width: 30px;
      height: 30px;
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      transition: var(--transition-fast);
      flex-shrink: 0;
    }

    .faq-item.active .faq-icon {
      background: var(--gold);
      color: var(--black);
      transform: rotate(45deg);
    }

    .faq-icon svg {
      width: 16px;
      height: 16px;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--transition-smooth);
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
    }

    .faq-answer p {
      padding-bottom: 25px;
      line-height: 1.8;
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }

    @media (max-width: 1024px) {
      .authority-grid,
      .case-grid,
      .reviews-grid,
      .blog-grid { grid-template-columns: repeat(2, 1fr); }
      .about-grid { grid-template-columns: 1fr; gap: 60px; }
      .about-images { height: 500px; }
      .ps-grid { grid-template-columns: 1fr; gap: 30px; }
      .ps-divider { flex-direction: row; }
      .ps-divider-line { width: 100px; height: 1px; }
    }

    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      :root { --section-padding: 80px; }
      .authority-grid,
      .services-grid,
      .case-grid,
      .reviews-grid,
      .blog-grid { grid-template-columns: 1fr; }
      .hero-buttons { flex-direction: column; }
      .slider-arrows { display: none; }
      .about-images { height: auto; position: static; }
      .about-image { position: static; width: 100%; height: 300px; }
      .about-image-2 { display: none; }
      .about-badge { display: none; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    }