/* ======================
    Front-page CSS
======================== */
.omorezi-intro {
  position: relative;

  top: 0;
  padding-top: 180px;

  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2000")
    center center/cover fixed;

  overflow: hidden;
}

.omorezi-intro-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(rgba(11, 16, 21, 0.9), rgba(11, 16, 21, 0.94));
}

.omorezi-container {
  position: relative;

  z-index: 2;

  width: min(1400px, 90%);

  margin: auto;
}

.omorezi-intro-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: self-start;

  margin-bottom: 80px;
}

.omorezi-tag {
  display: inline-block;

  padding: 10px 20px;

  background: rgba(212, 175, 55, 0.1);

  border: 1px solid rgba(212, 175, 55, 0.2);

  color: #d4af37;

  font-size: 13px;

  letter-spacing: 2px;

  margin-bottom: 25px;
}

.omorezi-intro-left h2 {
  color: #fff;

  font-size: clamp(32px, 3vw, 40px);

  line-height: 1.1;

  margin-bottom: 25px;
}

.omorezi-intro-left p {
  color: #bdbdbd;

  font-size: 18px;

  line-height: 1.9;
}

.omorezi-intro-right p {
  color: #bdbdbd;

  line-height: 2;

  margin-bottom: 25px;
}

.omorezi-values {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.value-card {
  padding: 40px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  transition: 0.4s ease;
}

.value-card:hover {
  transform: translateY(-10px);

  border-color: rgba(212, 175, 55, 0.3);
}

.value-card i {
  font-size: 32px;

  color: var(--primary-color);

  margin-bottom: 20px;
}

.value-card h3 {
  color: #fff;

  margin-bottom: 15px;
}

.value-card p {
  color: #bdbdbd;

  line-height: 1.8;
}

@media (max-width: 991px) {
  .omorezi-intro-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .omorezi-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .omorezi-intro {
    background-attachment: scroll;
  }

  .omorezi-intro-left h2 {
    font-size: 28px;
  }
}

.division-selector {
  background: #000;
  padding: 50px 20px;
}

.selector-heading {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.selector-heading span {
  color: #c9a96e;
  letter-spacing: 3px;
  font-size: 13px;
}

.selector-heading h2 {
  color: #fff;
  font-size: 58px;
  margin: 15px 0;
}

.selector-heading p {
  color: #bdbdbd;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.division-card {
  position: relative;
  min-height: 650px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  background: #111;
  transition: 0.4s ease;
}

.division-card:hover {
  transform: translateY(-8px);
}

.interior-card {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85") center
      center/cover;
}

.salon-card {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75)),
    url("https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f") center
      center/cover;
}

.card-content {
  position: relative;
  z-index: 2;
  padding: 40px;
}

.card-content h3 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 15px;
}

.card-content p {
  color: #d9d9d9;
  line-height: 1.8;
  margin-bottom: 25px;
}

.card-content span {
  color: #c9a96e;
  font-weight: 600;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .selector-heading h2 {
    font-size: 38px;
  }

  .division-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .division-card {
    min-height: 320px;
  }

  .card-content {
    padding: 20px;
  }

  .card-content h3 {
    font-size: 22px;
  }

  .card-content p {
    font-size: 13px;
    line-height: 1.6;
  }
}
/* =========================
    HERO SECTION
========================= */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    padding-top:100px;
}

.hero-slide{
    position:absolute;
    width:100%;
    height:100%;
    left:0;
    opacity:0;
    visibility:hidden;
    transition:1s ease;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
}

.hero-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(to right, rgba(0,0,0,0.86), rgba(0,0,0,0.48));
    top:0;
    left:0;
    z-index:1;
}

.hero-content{
    position:absolute;
    top:45%;
    left:8%;
    transform:translateY(-50%);
    z-index:2;
    max-width:700px;
}

.hero-subtitle{
    color:#D4AF37;
    font-size:13px;
    font-weight:bold;
    letter-spacing:3px;
    display:block;
    margin-bottom:25px;
}

.hero-content h1{
    color:white;
    font-size:13px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-content p{
    color:#d4d4d4;
    font-size:13px;
    line-height:1.8;
    margin-bottom:40px;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.hero-btn{
    padding:18px 38px;
    border-radius:40px;
    font-weight:bold;
    transition:0.4s ease;
    font-size:12px;
}

.primary-btn{
    background:#A77B19;
    color:white;
}

.primary-btn:hover{
    background:#070707;
}

.secondary-btn{
    border:2px solid white;
    color:white;
}

.secondary-btn:hover{
    background:white;
    color:#111;
}

/* NAVIGATION */

.hero-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:65px;
    height:65px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(8px);
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:12px;
    cursor:pointer;
    z-index:5;
    transition:0.3s;
}

.hero-nav:hover{
    background:#D4AF37;
}

.hero-prev{
    left:30px;
}

.hero-next{
    right:30px;
}

/* DOTS */

.hero-dots{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:14px;
    z-index:5;
}

.hero-dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:rgba(255,255,255,0.4);
    cursor:pointer;
    transition:0.3s;
}

.hero-dot.active{
    background:#D4AF37;
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero{
        height:100vh;
    }

    .hero-content{
        left:5%;
        right:5%;
        max-width:100%;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        font-size:12px;
    }

}

@media(max-width:600px){

    .hero{
        height:100vh;
    }

    .hero-content h1{
        font-size:13px;
    }

    .hero-content p{
        font-size:13px;
        line-height:1.7;
    }

    .hero-btn{
        padding:15px 28px;
        font-size:13px;
    }

    .hero-nav{
        width:50px;
        height:50px;
        font-size:12px;
        display: none;
    }

}




/* =========================
    WHY SECTION
========================= */

.why-section{
    padding:90px 7%;
    background:#070707;
    position:relative;
}

.why-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:55px;
    align-items:center;
}

/* LEFT */

.section-tag{
    color:#D4AF37;
    font-size:12px;
    font-weight:bold;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:22px;
}

.why-left h2{
    color:white;
    font-size:13px;
    line-height:1.2;
    margin-bottom:24px;
    max-width:650px;
}

.why-left h2 span{
    color:#D4AF37;
}

.why-text{
    color:#c5c5c5;
    font-size:12px;
    line-height:1.9;
    margin-bottom:30px;
    max-width:600px;
}

/* ITEMS */

.why-item{
    display:flex;
    gap:20px;
    margin-bottom:32px;
}

.why-icon{
    min-width:75px;
    height:75px;
    border-radius:50%;
    border:1px solid #D4AF37;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#D4AF37;
    font-size:23px;
    transition:0.4s;
}

.why-item:hover .why-icon{
    background:#D4AF37;
    color:#111;
    transform:translateY(-5px);
}

.why-info h3{
    color:white;
    font-size:13px;
    margin-bottom:10px;
}

.why-info p{
    color:#bfbfbf;
    line-height:1.7;
    font-size:13px;
    max-width:500px;
}

/* BOTTOM */

.why-bottom{
    display:flex;
    gap:24px;
    margin-top:45px;
    flex-wrap:wrap;
}

/* CALL BOX */

.call-box{
    flex:1;
    min-width:260px;
    background:#101822;
    border:1px solid #D4AF37;
    padding:24px;
    display:flex;
    align-items:center;
    gap:18px;
    border-radius:18px;
}

.call-icon{
    min-width:60px;
    height:60px;
    border-radius:50%;
    border:1px solid #D4AF37;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#D4AF37;
    font-size:13px;
}

.call-box span{
    color:white;
    font-weight:bold;
    display:block;
    margin-bottom:8px;
    font-size:12px;
}

.call-box h4{
    color:#D4AF37;
    font-size:13px;
}

/* EXPERIENCE */

.experience-box{
    min-width:220px;
    padding:24px;
    border-radius:18px;
    background:linear-gradient(135deg,#D4AF37,#A77B19);
    display:flex;
    align-items:center;
    gap:16px;
}

.experience-box h2{
    font-size:12px;
    color:white;
    line-height:1;
}

.experience-box p{
    color:white;
    font-size:12px;
    line-height:1.3;
}

/* RIGHT */

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.grid-item{
    overflow:hidden;
    border-radius:20px;
    position:relative;
}

.grid-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.grid-item:hover img{
    transform:scale(1.08);
}

.grid-large{
    grid-column:span 2;
    height:420px;
}

.grid-item:not(.grid-large){
    height:320px;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .why-left h2{
        font-size:40px;
    }

}

@media(max-width:991px){

    .why-container{
        grid-template-columns:1fr;
    }

    .why-left h2{
        font-size:13px;
    }

}

@media(max-width:600px){

    .why-section{
        padding:90px 5%;
    }

    .why-left h2{
        font-size:13px;
    }

    .why-text{
        font-size:13px;
    }

    .why-item{
        gap:16px;
    }

    .why-icon{
        min-width:65px;
        height:65px;
        font-size:12px;
    }

    .why-info h3{
        font-size:21px;
    }

    .why-info p{
        font-size:12px;
    }

    .call-box h4{
        font-size:13px;
    }

    .experience-box{
        width:100%;
    }

    .experience-box h2{
        font-size:13px;
    }

    .experience-box p{
        font-size:12px;
    }

    .grid-large{
        height:300px;
    }

    .grid-item:not(.grid-large){
        height:220px;
    }

}



/* =========================
    ABOUT SECTION
========================= */

.about-tabs-section{
    padding:85px 7%;
    background:#070707;
    overflow:hidden;
    position:relative;
}

.about-tabs-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

/* LEFT */

.about-tag{
    color:#D4AF37;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:18px;
}

.about-left h2{
    color:white;
    font-size:12px;
    line-height:1.2;
    margin-bottom:35px;
    max-width:600px;
}

/* TABS */

.about-tabs{
    display:flex;
    gap:28px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.about-tab{
    background:none;
    border:none;
    color:#8f8f8f;
    font-size: 18px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s ease;
    position:relative;
    padding-bottom:10px;
}

.about-tab::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:#D4AF37;
    transition:0.3s ease;
}

.about-tab.active{
    color:white;
}

.about-tab.active::after{
    width:100%;
}

/* TAB CONTENT */

.tab-content{
    display:none;
    animation:fadeTab 0.4s ease;
}

.tab-content.active{
    display:block;
}

@keyframes fadeTab{

    from{
        opacity:0;
        transform:translateY(10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* PARAGRAPH */

.tab-content p{
    color:#b9b9b9;
    font-size:13px;
    line-height:1.9;
    margin-bottom:30px;
    max-width:620px;
}

/* PROVIDE */

.provide-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.provide-item{
    display:flex;
    align-items:center;
    gap:12px;
    color:#d9d9d9;
    font-size:13px;
}

.provide-item i{
    color:#D4AF37;
    font-size:12px;
}

/* WORKS */

.works-grid{
    display:grid;
    gap:28px;
}

.works-item h3{
    color:white;
    font-size:12px;
    margin-bottom:12px;
}

/* WITH US */

.withus-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.withus-item{
    display:flex;
    gap:16px;
}

.withus-item span{
    color:#D4AF37;
    font-size:12px;
    font-weight:bold;
}

.withus-item h3{
    color:white;
    font-size:12px;
    margin-bottom:10px;
}

/* RIGHT */

.about-right{
    position:relative;
    min-height:620px;
    display:flex;
    align-items:flex-end;
    justify-content:center;
}

/* IMAGE */

.main-person{
    width:100%;
    max-width:560px;
    height:650px;
    object-fit:cover;
    border-radius:30px;
    position:relative;
    z-index:3;
    animation:floatImage 5s ease-in-out infinite;
    box-shadow:0 20px 60px rgba(0,0,0,0.45);
}

@keyframes floatImage{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }

}

/* FLOATING CARDS */

.floating-card{
    position:absolute;
    background:#111111;
    border:1px solid rgba(255,255,255,0.05);
    border-radius:14px;
    padding:16px 20px;
    display:flex;
    align-items:center;
    gap:14px;
    color:white;
    z-index:5;

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transform:translateY(20px) scale(0.95);

    transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s ease;

    box-shadow:0 15px 35px rgba(0,0,0,0.35);
}

.floating-card.active-card{

    opacity:1;
    visibility:visible;
    pointer-events:auto;

    transform:translateY(0) scale(1);

}

.floating-card i{
    color:#D4AF37;
    font-size:12px;
}

.floating-card span{
    font-size:12px;
    font-weight:600;
}

/* POSITIONS */

.card-1{
    top:120px;
    left:0;
}

.card-2{
    top:260px;
    right:10px;
}

.card-3{
    bottom:90px;
    left:40px;
}

/* GLOW */

.about-glow{
    position:absolute;
    width:420px;
    height:420px;
    background:#D4AF37;
    opacity:0.08;
    filter:blur(120px);
    border-radius:50%;
    bottom:0;
    z-index:1;
}

/* RESPONSIVE */

@media(max-width:991px){

    .about-tabs-container{
        grid-template-columns:1fr;
    }

    .about-right{
        min-height:auto;
        margin-top:50px;
    }

}

@media(max-width:600px){

    .about-tabs-section{
        padding:90px 5%;
    }

    .about-left h2{
        font-size:12px;
    }

    .provide-list,
    .withus-grid{
        grid-template-columns:1fr;
    }

    .main-person{
        height:450px;
    }

    .floating-card{
        display:none;
    }

}

/* =========================
    TAB 1
========================= */

.provide-text{
    color:#b9b9b9;
    font-size:13px;
    line-height:2;
    margin-bottom:35px;
    max-width:750px;
}

.provide-title{
    color:white;
    font-size:23px;
    margin-bottom:30px;
}

.provide-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}

.provide-item{
    display:flex;
    align-items:center;
    gap:12px;
    color:#d8d8d8;
    font-size:13px;
}

.provide-item i{
    color:#D4AF37;
    font-size:12px;
}

/* =========================
    TAB 2
========================= */

.works-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.works-left h3{
    color:white;
    font-size:23px;
    margin-bottom:24px;
}

.works-left p{
    color:#b9b9b9;
    font-size:13px;
    line-height:2;
    margin-bottom:28px;
}

.works-right{
    display:grid;
    gap:32px;
}

.works-item h4{
    color:white;
    font-size:12px;
    margin-bottom:14px;
    line-height:1.4;
}

.works-item h4 span{
    color:#D4AF37;
}

.works-item p{
    color:#b9b9b9;
    font-size:13px;
    line-height:1.9;
}

/* =========================
    TAB 3
========================= */

.withus-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.withus-item{
    display:flex;
    gap:18px;
}

.withus-item span{
    color:#D4AF37;
    font-size:12px;
    font-weight:bold;
}

.withus-item h3{
    color:white;
    font-size:13px;
    margin-bottom:14px;
}

.withus-item p{
    color:#b9b9b9;
    font-size:13px;
    line-height:1.9;
}

/* RESPONSIVE */

@media(max-width:991px){

    .works-layout,
    .withus-grid,
    .provide-list{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .works-left h3{
        font-size:23px;
    }

    .works-item h4{
        font-size:12px;
    }

    .withus-item h3{
        font-size:12px;
    }

    .provide-title{
        font-size:23px;
    }

}


/* =========================
    COUNTER SECTION
========================= */

.counter-section{
    position:relative;
    padding:90px 7%;
    overflow:hidden;

    background-image:url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?q=80&w=1974&auto=format&fit=crop');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

/* OVERLAY */

.counter-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
}

/* CONTAINER */

.counter-container{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

/* ITEM */

.counter-item{
    text-align:center;
}

.counter-icon{
    font-size:32px;
    color:white;
    margin-bottom:25px;
}

.counter-line{
    width:60px;
    height:4px;
    background:#D4AF37;
    margin:0 auto 30px;
    border-radius:40px;
}

.counter-number{
    color:white;
    font-weight:700;
    margin-bottom:12px;
}

.counter-item p{
    color:white;
    font-size:12px;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .counter-container{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){

    .counter-section{
        padding:90px 5%;
    }

    .counter-container{
        grid-template-columns:1fr;
        gap:60px;
    }

    .counter-icon{
        font-size:55px;
    }

    .counter-number{
        font-size:52px;
    }

    .counter-item p{
        font-size:13px;
    }

}



/* =========================
    REASONS SECTION
========================= */

.reasons-section{
    padding:90px 7%;
    background:#070707;
    overflow:hidden;
}

.reasons-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

/* =========================
    LEFT IMAGES
========================= */

.reasons-images{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:20px;
    height:700px;
}

.big-image{
    height:100%;
    overflow:hidden;
    border-radius:6px;
}

.big-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.small-images{
    display:grid;
    grid-template-rows:1fr 1fr;
    gap:20px;
}

.small-image{
    overflow:hidden;
    border-radius:6px;
}

.small-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

/* IMAGE HOVER */

.big-image:hover img,
.small-image:hover img{
    transform:scale(1.08);
}

/* =========================
    CONTENT
========================= */

.reasons-tag{
    display:inline-block;
    color:#D4AF37;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:18px;
}

.reasons-content h2{
    color:white;
    font-size:12px;
    line-height:1.2;
    margin-bottom:28px;
}

.reasons-content h2 span{
    color:#A77B19;
}

.reasons-text{
    color:#bdbdbd;
    font-size:12px;
    line-height:1.9;
    margin-bottom:34px;
    max-width:620px;
}

/* =========================
    ITEMS
========================= */

.reason-item{
    display:flex;
    gap:22px;
    margin-bottom:40px;
}

.reason-icon{
    min-width:58px;
    height:58px;
    border-radius:50%;
    background:rgba(88,215,88,0.08);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#D4AF37;
    font-size:23px;
    margin-top:4px;
}

.reason-info h3{
    color:white;
    font-size:12px;
    margin-bottom:14px;
}

.reason-info p{
    color:#bdbdbd;
    font-size:13px;
    line-height:1.9;
    max-width:580px;
}

/* =========================
    RESPONSIVE
========================= */

@media(max-width:1200px){

    .reasons-content h2{
        font-size:13px;
    }

    .reason-info h3{
        font-size:12px;
    }

}

@media(max-width:991px){

    .reasons-container{
        grid-template-columns:1fr;
    }

    .reasons-images{
        height:600px;
    }

}

@media(max-width:600px){

    .reasons-section{
        padding:90px 5%;
    }

    .reasons-images{
        grid-template-columns:1fr;
        height:auto;
    }

    .small-images{
        grid-template-columns:1fr 1fr;
        grid-template-rows:auto;
    }

    .big-image{
        height:350px;
    }

    .small-image{
        height:180px;
    }

    .reasons-content h2{
        font-size:13px;
    }

    .reason-info h3{
        font-size:12px;
    }

    .reason-item{
        gap:16px;
    }

}


/* =========================
    TESTIMONIAL SECTION
========================= */

.testimonial-section{
    position:relative;
    padding:90px 7%;
    background:#070707;
    overflow:hidden;
}

/* CURVE */

.testimonial-curve{
    position:absolute;
    width:700px;
    height:260px;
    background:white;
    border-radius:50%;
    top:-180px;
    left:-150px;
    opacity:0.08;
}

/* CONTAINER */

.testimonial-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

/* =========================
    LEFT IMAGES
========================= */

.testimonial-images{
    position:relative;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.testimonial-image{
    height:320px;
    overflow:hidden;
    border-radius:8px;

    opacity:0.35;
    transform:scale(0.95);

    transition:0.5s ease;
}

.testimonial-image.active-image{
    opacity:1;
    transform:scale(1);
}

.testimonial-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* QUOTE */

.testimonial-quote{
    position:absolute;
    width:120px;
    height:120px;
    border-radius:50%;
    background:#D4AF37;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:48px;
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
    z-index:5;
    box-shadow:0 20px 40px rgba(0,0,0,0.35);
}

/* =========================
    CONTENT
========================= */

.testimonial-tag{
    display:inline-block;
    color:#D4AF37;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:24px;
}

/* SLIDES */

.testimonial-slide{
    display:none;
    animation:fadeSlide 0.5s ease;
}

.testimonial-slide.active-slide{
    display:block;
}

@keyframes fadeSlide{

    from{
        opacity:0;
        transform:translateY(15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.testimonial-slide h2{
    color:white;
    font-size:13px;
    line-height:1.2;
    margin-bottom:35px;
    max-width:700px;
}

.testimonial-slide p{
    color:#bdbdbd;
    font-size:12px;
    line-height:2;
    margin-bottom:35px;
    max-width:700px;
}

.testimonial-slide h4{
    color:white;
    font-size:22px;
}

/* DOTS */

.testimonial-dots{
    display:flex;
    gap:14px;
    margin-top:50px;
}

.testimonial-dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#1f2834;
    cursor:pointer;
    transition:0.3s ease;
}

.testimonial-dot.active-dot{
    background:#D4AF37;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .testimonial-slide h2{
        font-size:48px;
    }

}

@media(max-width:991px){

    .testimonial-container{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .testimonial-section{
        padding:90px 5%;
    }

    .testimonial-images{
        gap:16px;
    }

    .testimonial-image{
        height:200px;
    }

    .testimonial-slide h2{
        font-size:12px;
    }

    .testimonial-slide p{
        font-size:13px;
    }

    .testimonial-slide h4{
        font-size:22px;
    }

    .testimonial-quote{
        width:90px;
        height:90px;
        font-size:12px;
    }

}

/* =========================
    CTA SECTION
========================= */

.cta-section{
    width:100%;
    background:#070707;
}

/* CONTAINER */

.cta-container{
    width:100%;

    background:linear-gradient(135deg,#151515,#1E170A,#0A0A0A);

    min-height:240px;

    padding:55px 7%;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;

    position:relative;
    overflow:hidden;
}

/* GLOW EFFECT */

.cta-container::before{
    content:"";

    position:absolute;

    width:420px;
    height:420px;

    background:rgba(255,255,255,0.08);

    border-radius:50%;

    top:-250px;
    left:-120px;
}

/* TEXT */

.cta-container h2{
    color:white;
    font-size:24px;
    font-weight:300;
    line-height:1.3;
    max-width:850px;

    position:relative;
    z-index:2;
}

.cta-container h2 span{
    font-weight:700;
}

/* BUTTON */

.cta-btn{
    min-width:300px;

    height:82px;

    background:#070707;

    border-radius:80px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;

    color:white;
    font-size:12px;
    font-weight:600;

    transition:0.4s ease;

    position:relative;
    z-index:2;
}

.cta-btn:hover{
    transform:translateY(-6px);
}

.cta-btn i{
    color:#D4AF37;
    font-size:12px;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .cta-container{
        flex-direction:column;
        align-items:flex-start;
    }

    .cta-container h2{
        font-size:23px;
    }

}

@media(max-width:600px){

    .cta-container{
        padding:45px 5%;
    }

    .cta-container h2{
        font-size:22px;
    }

    .cta-btn{
        width:100%;
        min-width:auto;
        height:70px;
        font-size:13px;
    }

}

/* =========================
    STEPS SECTION
========================= */

.steps-section{
    padding:90px 7%;
    background:#05070b;
    overflow:hidden;
    position:relative;
}

/* HEADER */

.steps-header{
    text-align:center;
    margin-bottom:60px;
}

.steps-tag{
    display:inline-block;
    color:#d8b23c;
    font-size:13px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:24px;
}

.steps-header h2{
    color:white;
    font-size:13px;
    line-height:1.2;
    font-weight:500;
    max-width:1100px;
    margin:auto;
}

/* WRAPPER */

.steps-wrapper{
    position:relative;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

/* LINE */

.steps-line{
    position:absolute;
    top:34px;
    left:12%;
    width:76%;
    height:2px;
    background:rgba(255,255,255,0.08);
    z-index:1;
}

/* ITEM */

.step-item{
    position:relative;
    text-align:center;
    z-index:2;
}

/* NUMBER */

.step-number{
    width:72px;
    height:72px;
    border-radius:50%;

    background:#d8b23c;

    color:black;
    font-size:22px;
    font-weight:700;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:0 auto 34px;

    transition:0.4s ease;
}

.step-item:hover .step-number{
    transform:translateY(-8px) scale(1.05);
}

/* TITLE */

.step-item h3{
    color:white;
    font-size:20px;
    margin-bottom:22px;
    line-height:1.3;
}

/* TEXT */

.step-item p{
    color:#b9b9b9;
    font-size:12px;
    line-height:2;
    max-width:320px;
    margin:auto;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .steps-header h2{
        font-size:13px;
    }

    .step-item h3{
        font-size:20px;
    }

}

@media(max-width:991px){

    .steps-wrapper{
        grid-template-columns:repeat(2,1fr);
        gap:70px 40px;
    }

    .steps-line{
        display:none;
    }

}

@media(max-width:600px){

    .steps-section{
        padding:90px 5%;
    }

    .steps-wrapper{
        grid-template-columns:1fr;
    }

    .steps-header{
        margin-bottom:70px;
    }

    .steps-header h2{
        font-size:40px;
    }

    .step-item h3{
        font-size:20px;
    }

    .step-number{
        width:62px;
        height:62px;
        font-size:12px;
    }

    .step-item p{
        font-size:13px;
    }

}




/* =========================================================
   REZI PREMIUM OVERRIDES
========================================================= */
.hero-btn,
.quote-btn,
.cta-btn{
    letter-spacing:1px;
}

.hero-content h1,
.steps-header h2,
.reasons-content h2,
.testimonial-slide h2{
    letter-spacing:-2px;
}

.submenu{
    border-radius:20px;
}

.hero-nav{
    backdrop-filter:blur(12px);
}

.testimonial-image,
.grid-item,
.big-image,
.small-image,
.main-person{
    border-radius:24px;
}

.cta-container{
    border-top:1px solid rgba(255,255,255,0.05);
}


/* =========================================================
   REZI CONTROLLED TYPOGRAPHY REBALANCE
========================================================= */

p{
    font-size:15px !important;
    line-height:1.9;
}

/* HERO */

.hero-content h1{
    font-size:64px !important;
    line-height:1.05;
}

.hero-content p{
    font-size:17px !important;
    max-width:620px;
}

.hero-subtitle{
    font-size:12px !important;
}

/* SECTION TITLES */

.why-left h2,
.about-left h2,
.reasons-content h2,
.steps-header h2,
.testimonial-slide h2{
    font-size:50px !important;
    line-height:1.15;
}

/* CARD TITLES */

.why-info h3,
.reason-info h3,
.withus-item h3,
.works-item h4{
    font-size:24px !important;
}

/* SMALL TEXT */

.section-tag,
.about-tag,
.reasons-tag,
.steps-tag,
.testimonial-tag{
    font-size:12px !important;
}

/* BUTTONS */

.hero-btn,
.quote-btn,
.cta-btn{
    font-size:13px !important;
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero-content h1{
        font-size:50px !important;
    }

    .why-left h2,
    .about-left h2,
    .reasons-content h2,
    .steps-header h2,
    .testimonial-slide h2{
        font-size:42px !important;
    }

}

@media(max-width:600px){

    .hero-content h1{
        font-size:38px !important;
    }

    .why-left h2,
    .about-left h2,
    .reasons-content h2,
    .steps-header h2,
    .testimonial-slide h2{
        font-size:32px !important;
    }

    p{
        font-size:15px !important;
    }

}

/* =========================================
   REZI HOME INSIGHTS
========================================= */

.rezi-insights-home{

    padding:90px 7%;

    background:#070707;

    overflow:hidden;

}

/* HEADER */

.rezi-insights-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    gap:30px;

    margin-bottom:55px;

}

.rezi-section-tag{

    display:inline-block;

    color:#D4AF37;

    font-size:12px;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:16px;

}

.rezi-insights-header h2{

    color:white;

    font-size:52px;

    line-height:1.15;

    max-width:700px;

}

/* VIEW ALL */

.rezi-view-all{

    min-width:170px;

    height:56px;

    border-radius:60px;

    border:1px solid rgba(255,255,255,0.08);

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    color:white;

    font-size:13px;

    font-weight:600;

    transition:0.4s ease;

}

.rezi-view-all:hover{

    background:#D4AF37;

    color:#111;

}

/* SLIDER */

.rezi-insights-slider-wrapper{

    position:relative;

}

.rezi-insights-slider{

    display:flex;

    gap:24px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scrollbar-width:none;

    align-items:stretch;

}

.rezi-insights-slider::-webkit-scrollbar{

    display:none;

}

/* CARD */

.rezi-insight-card{

    min-width:420px;

    width:420px;

    height:600px;

    background:#101010;

    border:1px solid rgba(255,255,255,0.05);

    border-radius:26px;

    overflow:hidden;

    transition:0.4s ease;

    flex-shrink:0;

    display:flex;

    flex-direction:column;

}

.rezi-insight-card:hover{

    transform:translateY(-8px);

    border-color:rgba(212,175,55,0.2);

}

/* IMAGE */

.rezi-insight-image{

    display:block;

    width:100%;

    min-height:280px;

    max-height:280px;

    overflow:hidden;
}

.rezi-insight-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s ease;

}

.rezi-insight-card:hover .rezi-insight-image img{

    transform:scale(1.08);

}

/* CONTENT */

.rezi-insight-content{

    padding:28px;

    flex:1;

    display:flex;

    flex-direction:column;
    justify-content: space-between;

}

/* CATEGORY */

.rezi-insight-category{

    display:inline-block;

    color:#D4AF37;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:16px;

}

/* TITLE */

.rezi-insight-content h3{

    margin-bottom:18px;

}

.rezi-insight-content h3 a{

    color:white;

    font-size:28px;

    line-height:1.35;

    transition:0.3s ease;

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

}

.rezi-insight-content h3 a:hover{

    color:#D4AF37;

}

/* EXCERPT */

.rezi-insight-content p{

    color:#bdbdbd;

    font-size:15px;

    line-height:1.9;

    margin-bottom:26px;

    display:-webkit-box;

    -webkit-line-clamp:3;

    -webkit-box-orient:vertical;

    overflow:hidden;

}

/* BOTTOM */

.rezi-insight-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:auto;

}

.rezi-insight-bottom span{

    color:#8f8f8f;

    font-size:13px;

    display:flex;

    align-items:center;

    gap:8px;

}

.rezi-insight-bottom span i{

    color:#D4AF37;

}

.rezi-insight-bottom a{

    color:white;

    font-size:13px;

    font-weight:600;

    transition:0.3s ease;

}

.rezi-insight-bottom a:hover{

    color:#D4AF37;

}

/* NAV BUTTONS */

.rezi-insight-nav{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:56px;

    height:56px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(10px);

    color:white;

    cursor:pointer;

    z-index:5;

    transition:0.3s ease;

}

.rezi-insight-nav:hover{

    background:#D4AF37;

    color:#111;

}

.prev-insight{

    left:-28px;

}

.next-insight{

    right:-28px;

}

/* RESPONSIVE */

@media(max-width:991px){

    .rezi-insights-header{

        flex-direction:column;

        align-items:flex-start;

    }

    .rezi-insights-header h2{

        font-size:42px;

    }

    .rezi-insight-card{

        min-width:340px;

    }

}

@media(max-width:600px){

    .rezi-insights-home{

        padding:80px 5%;

    }

    .rezi-insights-header h2{

        font-size:32px;

    }

    .rezi-insight-card{

        min-width:100%;

    }

    .rezi-insight-content{

        padding:24px;

    }

    .rezi-insight-content h3 a{

        font-size:22px;

    }

    .rezi-insight-nav{

        display:none;

    }

}