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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  background: #000;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

/* HEADER */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(3px);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #fff;
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1.4px;
  line-height: 1;
}
.logo-ring {
  width: 28px;
  height: 26px;
  object-fit: contain;
  margin-top: 0px;
}

.rehab-line {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

.rehab-line span {
  width: 55px;
  height: 1px;
  background: var(--clr-primary);
}

.rehab-line p {
  color: #fff;
  letter-spacing: 6px;
  font-size: 0.95rem;
}

/* NAV */

.navbar {
  display: flex;
  gap: 50px;
}

.navbar a {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  transition: var(--transition);
}

.navbar a:hover {
  color: var(--clr-primary);
}

.menu-btn {
  display: none;
}

/*  HERO  */

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: url("../assets/homepage.jpg");
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.45));
}
.hero-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 100px;
}

.hero-content {
  max-width: 780px;
}
.hero-subtitle {
  color: var(--clr-primary);
  font-size: 1.3rem;
  letter-spacing: 12px;
  margin-bottom: 35px;
  text-transform: uppercase;
}
.hero h1 {
  color: #fff;
  font-family: var(--ff-heading);
  font-size: clamp(5rem, 7vw, 5rem);
  line-height: 0.92;
  font-weight: 400;
  margin-bottom: 35px;
}

.hero h1 span {
  color: var(--clr-primary);
}

.hero-description {
  color: var(--clr-text);
  max-width: 720px;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 55px;
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  gap: 25px;
}

.btn {
  padding: 22px 50px;
  letter-spacing: 6px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-primary {
  background: var(--clr-primary);
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-5px);
  background: var(--clr-primary-light);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

/* STUDIO */

.studio-info {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.studio-info span {
  width: 180px;
  height: 1px;
  background: var(--clr-primary);
}

.studio-info p {
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 5px;
  margin-bottom: 12px;
}

.studio-info h3 {
  color: #fff;
  letter-spacing: 3px;
  font-size: 1rem;
  font-weight: 500;
}

.menu-btn,
.mobile-menu {
  display: none;
}

/* ===================================================
   WHY US SECTION
=================================================== */

.why-us {
  background: #14110f;
  padding: 170px 0;
}

.why-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 140px;
}

.why-content {
  width: 45%;
}

.section-tag {
  font-size: 0.8rem;
  letter-spacing: 6px;
  color: var(--clr-primary);
  margin-bottom: 45px;
}

.why-content h2 {
  font-family: var(--ff-heading);
  /* font-size: clamp(1rem, 4vw, 4.8rem); */
  font-size: 3.4rem;
  line-height: 1.35;
  font-weight: 400;
  max-width: 920px;
  color: var(--clr-white);
  margin-bottom: 18px;
}
.why-content .desc {
  color: var(--clr-text);
  font-size: 1.2rem;
  line-height: 2.4;
}

.why-grid {
  width: 50%;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 45px 40px;
}

.why-item {
  display: flex;
  gap: 20px;

  padding-bottom: 30px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);

  transition: 0.5s;

  opacity: 0;
  transform: translateY(60px);
}

.why-item.show {
  opacity: 1;
  transform: translateY(0);
}

.why-item:hover {
  transform: translateY(-8px);
}

.why-item span {
  color: var(--clr-primary);

  font-size: 1.3rem;

  flex-shrink: 0;

  margin-top: 4px;
}

.why-item p {
  font-family: var(--ff-heading);

  font-size: 1.7rem;

  line-height: 1.3;

  font-weight: 400;

  transition: 0.4s;
  color: #fff;
}

.why-item:hover p {
  color: var(--clr-primary-light);
}

/* ===================================================
   ABOUT / MEET CHANDNI
=================================================== */

.about-section {
  background: #181513;
  padding: 170px 0;
  overflow: hidden;
}

.about-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

/* ==========================
   IMAGE
========================== */

.about-image {
  width: 38%;
  flex-shrink: 0;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

/* ==========================
   CONTENT
========================== */

.about-content {
  width: 62%;
}

.about-content .section-tag {
  color: var(--clr-primary);
  font-size: 0.9rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-title {
  font-family: var(--ff-heading);
  color: var(--clr-white);
  margin-bottom: 20px;
  font-size: 3.4rem;
  line-height: 1.35;
  font-weight: 400;
}

.about-subtitle {
  color: var(--clr-primary);
  font-family: var(--ff-body);
  font-size: 1rem;
  letter-spacing: 5px;
  font-weight: 500;
  text-transform: uppercase;
}

.about-line {
  width: 120px;
  height: 2px;
  background: var(--clr-primary);
  margin: 20px 0;
}

/* ==========================
   PARAGRAPH
========================== */

.about-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  line-height: 2;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* ==========================
   CREDENTIALS
========================== */

.credentials {
  margin-top: 40px;
}

.credentials h4 {
  color: var(--clr-primary);
  font-size: 1rem;
  letter-spacing: 5px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 50px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.credential-line {
  width: 30px;
  height: 2px;
  background: var(--clr-primary);
  flex-shrink: 0;
}

.credential-item p {
  color: var(--clr-white);
  font-size: 1.2rem;
  letter-spacing: 3px;
  line-height: 1.6;
}

.credential-item {
  transition: 0.35s ease;
}

.credential-item:hover {
  transform: translateX(8px);
}

.credential-item:hover p {
  color: var(--clr-primary-light);
}

.about-image,
.about-content {
  opacity: 1;

  transform: none;
}

.about-image img {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.about-content > *:last-child {
  margin-bottom: 0;
}

.services-section {
  background: #181513;

  padding: 170px 0;
}

.services-heading {
  margin-bottom: 50px;
}

.services-title {
  font-family: var(--ff-heading);

  font-size: 3.4rem;
  line-height: 1.35;
  font-weight: 400;
  color: #fff;
}

/* ==========================
   GRID
========================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* ==========================
   CARD
========================== */

.service-card {
  background: #1b1815;
  border: 1px solid rgba(196, 160, 68, 0.12);
  padding: 42px 36px;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  transition: all 0.45s ease;
  position: relative;
  overflow: hidden;
}

/* Premium top accent */

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 3px;
  background: var(--clr-primary);
  transition: width 0.45s ease;
}

/* Premium glow */

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(196, 160, 68, 0.08),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

/* Hover */

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(196, 160, 68, 0.45);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card h3 {
  font-family: var(--ff-heading);
  color: #fff;
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.2;
}

.service-line {
  width: 155px;
  height: 2px;
  background: var(--clr-primary);
  margin-bottom: 28px;
}

.service-description {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.18rem;
  line-height: 1.8;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
}

/* ==========================
   LIST
========================== */

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  line-height: 1.8;
  letter-spacing: 1.3px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  transition: 0.35s;
}

.service-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--clr-primary);
  border-radius: 50%;
  margin-top: 13px;
  flex-shrink: 0;
}

.service-card:hover .service-list li {
  color: #fff;
}

.service-card:hover .service-description {
  color: rgba(255, 255, 255, 0.82);
}

/* ==========================
   FLEX SPACING
========================== */

.service-card .service-list {
  margin-top: auto;
}

.services-section ::selection {
  background: var(--clr-primary);
  color: #000;
}

.studio-section {
  background: #14110f;
  padding: 170px 0;
}

.studio-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 70px;
}

.studio-title {
  font-family: var(--ff-heading);
  font-size: 3.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.35;
  max-width: 560px;
}

.studio-title span {
  color: var(--clr-primary);
}

.studio-right {
  display: flex;
  align-items: center;
}

.studio-right p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.18rem;
  line-height: 2;
  letter-spacing: 1.5px;
}

.studio-slider {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.studio-slider .swiper-slide {
  overflow: hidden;
}

.studio-slider img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  display: block;
  transition: transform 2s ease;
}

/* Ken Burns Effect */

.swiper-slide-active img {
  transform: scale(1.05);
}

.studio-controls {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

/* Arrows */

.studio-prev,
.studio-next {
  width: 58px;
  height: 58px;

  display: flex;
  justify-content: center;
  align-items: center;

  border: 1px solid rgba(196, 160, 68, 0.35);

  border-radius: 50%;

  background: transparent;

  color: var(--clr-primary);

  cursor: pointer;

  transition: 0.35s ease;

  flex-shrink: 0;

  padding: 0;
}

.studio-prev svg,
.studio-next svg {
  width: 32px;
  height: 32px;
  display: block;
}

.studio-prev:hover,
.studio-next:hover {
  background: var(--clr-primary);

  border-color: var(--clr-primary);

  color: #000;
}

.studio-prev:active,
.studio-next:active {
  transform: scale(0.95);
}

/* Pagination */

.studio-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.studio-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  margin: 0 7px !important;
  transition: 0.35s;
}

.studio-pagination .swiper-pagination-bullet-active {
  background: var(--clr-primary);
  transform: scale(1.4);
}

.studio-slider::after {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.18), transparent 35%);
}

.studio-slider {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.studio-slider:hover img {
  transform: scale(1.03);
}

.studio-prev:active,
.studio-next:active {
  transform: scale(0.95);
}

.studio-section ::selection {
  background: var(--clr-primary);
  color: #000;
}

.testimonial-section {
  background: #181513;
  padding: 170px 0;
}

/* ==========================
   HEADING
========================== */

.testimonial-heading {
  margin-bottom: 70px;
}

.testimonial-title {
  font-family: var(--ff-heading);
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
}

.testimonial-title span {
  color: var(--clr-primary);
}

/* ==========================
   SLIDER
========================== */

.testimonial-slider {
  overflow: hidden;
}

.testimonial-slider .swiper-wrapper {
  align-items: stretch;
}

.testimonial-slider .swiper-slide {
  height: auto;
  display: flex;
}

/* ==========================
   CARD
========================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 380px;
  background: #1b1815;
  border: 1px solid rgba(196, 160, 68, 0.12);
  padding: 45px 38px;
  overflow: hidden;
}

/* Top Gold Line */

.testimonial-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 0;

  height: 2px;

  background: var(--clr-primary);

  transition: 0.45s;
}

/* Luxury Glow */

.testimonial-card::after {
  content: "";

  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at top,
    rgba(196, 160, 68, 0.06),
    transparent 70%
  );

  opacity: 0;

  transition: 0.45s;

  pointer-events: none;
}

.testimonial-stars {
  color: var(--clr-primary);

  font-size: 1.4rem;

  letter-spacing: 6px;

  margin-bottom: 28px;
}

/* ==========================
   TEXT
========================== */

.testimonial-text {
  font-family: var(--ff-heading);

  font-size: 2rem;

  line-height: 1.75;

  color: rgba(255, 255, 255, 0.92);

  margin-bottom: 40px;

  flex-grow: 1;
}

/* ==========================
   CLIENT NAME
========================== */

.testimonial-card h4 {
  margin-top: auto;
  color: var(--clr-primary);

  text-transform: uppercase;

  letter-spacing: 5px;

  font-size: 1rem;
}

/* ==========================
   CONTROLS
========================== */

.testimonial-controls {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 30px;

  margin-top: 45px;
}

.testimonial-prev,
.testimonial-next {
  width: 56px;

  height: 56px;

  border-radius: 50%;

  border: 1px solid rgba(196, 160, 68, 0.3);

  background: rgba(255, 255, 255, 0.03);

  backdrop-filter: blur(8px);

  display: flex;

  justify-content: center;

  align-items: center;

  color: var(--clr-primary);

  cursor: pointer;

  transition: 0.35s;
}

.testimonial-prev svg,
.testimonial-next svg {
  width: 32px;
  height: 32px;
  display: block;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--clr-primary);

  color: #000;
}

.testimonial-prev:active,
.testimonial-next:active {
  transform: scale(0.95);
}

/* ==========================
   PAGINATION
========================== */

.testimonial-pagination {
  display: flex;

  justify-content: center;

  align-items: center;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 9px;

  height: 9px;

  margin: 0 6px !important;

  background: rgba(255, 255, 255, 0.25);

  opacity: 1;

  transition: 0.35s;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--clr-primary);

  transform: scale(1.4);
}

/* ==========================
   TEXT SELECTION
========================== */

.testimonial-section ::selection {
  background: var(--clr-primary);

  color: #000;
}

/* ===================================================
   CTA SECTION
=================================================== */

.cta-section {
  background: #14110f;
  padding: 170px 0;
}

.cta-content {
  max-width: 1180px;
}

.cta-title {
  font-family: var(--ff-heading);
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--clr-white);
  max-width: 1180px;
  margin-bottom: 60px;
}

.cta-title span {
  /* display: block;
  margin-top: 18px; */
  color: var(--clr-primary);
}

/* =====================================
   BUTTON
===================================== */

.cta-content .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 215px;
}

.cta-content .section-tag {
  position: relative;
  display: inline-block;
  margin-bottom: 42px;
}

.cta-content .section-tag::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -16px;

  width: 0;

  height: 2px;

  background: var(--clr-primary);

  transition: width 0.8s ease;
}

.cta-content.show .section-tag::after {
  width: 90px;
}

/* =====================================
   BUTTON HOVER
===================================== */

.cta-content .btn-primary {
  transition: 0.35s ease;
}

.contact-section {
  background: #181513;
  padding: 170px 0 60px;
}

/* ==========================
   HEADING
========================== */

.contact-heading {
  margin-bottom: 80px;
}

.contact-title {
  font-family: var(--ff-heading);
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--clr-white);
  max-width: 720px;
}

/* ==========================
   GRID
========================== */

.contact-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 60px 120px;
}

/* ==========================
   ITEM
========================== */

.contact-item {
  border-left: 2px solid var(--clr-primary);

  padding-left: 22px;

  transition: 0.35s ease;
}

.contact-item:hover {
  transform: translateX(8px);
}

.contact-item h4 {
  color: var(--clr-primary);

  font-size: 1rem;

  letter-spacing: 5px;

  font-weight: 500;

  margin-bottom: 28px;

  text-transform: uppercase;
}

.contact-item a,
.contact-item p {
  font-family: var(--ff-heading);

  font-size: 2rem;

  font-weight: 400;

  line-height: 1.4;

  color: var(--clr-white);

  text-decoration: none;

  transition: 0.35s ease;

  word-break: break-word;
}

.contact-item a:hover {
  color: var(--clr-primary);
}

/* ==========================
   DIVIDER
========================== */

.footer-divider {
  width: 100%;

  height: 1px;

  background: rgba(255, 255, 255, 0.12);

  margin: 90px 0 40px;
}

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

.footer {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.footer p {
  color: rgba(255, 255, 255, 0.55);

  font-size: 0.95rem;

  letter-spacing: 2px;
}

.contact-section ::selection {
  background: var(--clr-primary);

  color: #000;
}

.story-section {
  background: #14110f;
  padding: 170px 0;
}

.story-header {
  width: 100%;
  max-width: 100%;
  margin-bottom: 70px;
}

.story-header .section-tag {
  color: var(--clr-primary);
  font-size: 0.99rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.story-title {
  font-family: var(--ff-heading);
  color: var(--clr-white);
  margin-bottom: 20px;
  font-size: 3.4rem;
  line-height: 1.35;
  font-weight: 400;
}

.story-title span {
  color: var(--clr-primary);
}

.story-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  letter-spacing: 3px;

  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  line-height: 2;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* ======================================
   ARTICLE
====================================== */

.story-content {
  width: 100%;
  max-width: 100%;
}

.story-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  line-height: 2;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.story-content h3 {
  font-family: var(--ff-heading);

  font-size: 2rem;

  font-weight: 400;

  color: var(--clr-primary);

  margin-top: 70px;

  margin-bottom: 25px;
  width: 100%;
}

.story-content strong {
  color: var(--clr-white);

  font-weight: 600;
}

/* ======================================
   BULLET LIST
====================================== */

.story-content ul {
  margin: 35px 0;

  padding-left: 24px;
  width: 100%;
}

.story-content li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  line-height: 2;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* ======================================
   QUOTE
====================================== */

.story-content blockquote {
  margin: 70px 0;

  padding-left: 25px;

  border-left: 3px solid var(--clr-primary);

  font-family: var(--ff-heading);

  font-size: 2rem;

  color: var(--clr-primary);

  line-height: 1.6;

  font-style: italic;
}
