/* =========================
   HOME LAYOUT
========================= */

.landing {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-content {
    text-align: center;
    z-index: 2;
}

.landing-content h1 {
    font-size: 5.5rem;
    margin: 0;
}

.landing-content p {
    font-size: 3rem;
    opacity: 0.8;
    margin-top: 0;
}

/* =========================
   INTRO (FIXED)
========================= */

.intro {
    padding: 100px var(--side-padding);
}

.intro__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

/* TEXT SIDE (restore visibility + spacing) */
.intro__text {
    font-size: 1.6rem;
    line-height: 1.6;
    max-width: 600px;
    z-index: 2;
}

.intro__text h2 {
    font-size: 3rem;
}

/* IMAGE FIX (THIS WAS THE BREAK) */
.intro__visual {
    width: 380px;
    height: 480px;
    flex-shrink: 0;

    border-radius: 20px;
    overflow: hidden;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}

.intro__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   SERVICES
========================= */

.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 60px 0;
}

.services__container {
    display: flex;
    gap: 40px;
}

.service {
    width: 350px;
    padding: 40px;
    text-align: center;
    text-decoration: none;
    color: white;

    /* opacity: .6; */

    transition: transform 0.3s ease;
}

.service .bg {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    transition: 0.2s;
}

.service:hover {
    transform: translateY(-5px);
    /* background: rgba(255,255,255,0.15); */
    /* opacity: 1; */
}

.service h1,
.service span {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.service:hover h1,
.service:hover span {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.service span {
    font-size: 1.2rem;;
}

/* =========================
   REVIEWS (RESTORED CAROUSEL)
========================= */

.reviews-section {
    text-align: center;
    padding: 80px var(--side-padding);
}

.reviews-carousel {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

/* THIS IS REQUIRED FOR SLIDER TO WORK */
.reviews-track {
    display: flex;
    transition: transform 0.6s ease;
}

/* EACH SLIDE MUST BE FULL WIDTH */
.review {
    min-width: 100%;
    box-sizing: border-box;

    padding: 40px;
    font-style: italic;

    /* background: rgba(255,255,255,0.06); */
    /* border-radius: 20px; */
    /* backdrop-filter: blur(8px); */

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

/* TEXT INSIDE */
.review__container p {
    margin: 0;
    margin-top:30px;
    font-size: 1.6rem;
}

.review__container span {
    font-size: 1.4rem;
    opacity: 0.8;
    margin-top: 10px;
}

/* CONTROLS FIX */
.reviews-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.reviews-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: var(--accent-color);
    color: white;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.reviews-controls button:hover {
    background: var(--accent-color-hover);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    cursor: pointer;
}

.reviews-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.reviews-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border-color: var(--accent-color);
  border-style: solid;
}

.reviews-dot:hover {
  border-color: var(--accent-color-hover);
}

.reviews-dot.active:hover {
  border-color: var(--accent-color);
}

.reviews-dot.active {
  background: var(--accent-color);
  width: 16px;
  height: 16px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}


.review-stars svg {
    width: 35px;
    height: 35px;
}