:root{
  --gold:#d4af37;
  --black:#050505;
  --white:#ffffff;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  overflow-x:hidden;
  background:#000;
}

/* =========================
HERO SECTION
========================= */

.wiw-hero{
  position:relative;
  width:100%;
  min-height:100vh;
  background:#000;
  overflow:hidden;
  display:flex;
  align-items:center;
  font-family:'Inter',sans-serif;
}

/* VIDEO */

.wiw-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:1;
}

.wiw-video video{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.08);
  animation:zoomVideo 12s ease-in-out infinite alternate;
}

/* OVERLAY */

.wiw-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(to right, rgba(0,0,0,.82), rgba(0,0,0,.35)),
  linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.2));
  z-index:2;
}

/* GOLD GLOW */

.wiw-glow{
  position:absolute;
  width:500px;
  height:500px;
  right:-120px;
  top:50%;
  transform:translateY(-50%);
  background:radial-gradient(circle, rgba(212,175,55,.18), transparent 70%);
  filter:blur(40px);
  z-index:2;
  animation:floatGlow 8s ease-in-out infinite;
}

/* CONTENT */

.wiw-container{
  position:relative;
  z-index:5;
  width:100%;
  max-width:1400px;
  margin:auto;
  padding:120px 15px;
  padding-top: 160px;
}

.wiw-content{
  max-width:760px;
}

/* TAG */

.wiw-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 24px;
  border-radius:60px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(10px);
  color:#e8d29c;
  font-size:14px;
  letter-spacing:1px;
  margin-bottom:28px;
}

.wiw-tag::before{
  content:'';
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 15px var(--gold);
}

/* TITLE */

.wiw-title{
  font-family:'Cinzel',serif;
  font-size:clamp(52px, 6vw, 96px);
  line-height:1.05;
  font-weight:700;
  color:#fff;
  margin-bottom:30px;
  letter-spacing:-2px;
}

.wiw-title span{
  color:var(--gold);
}

/* SUBTITLE */

.wiw-subtitle{
  font-size:20px;
  line-height:1.9;
  color:rgba(255,255,255,.78);
  max-width:680px;
  margin-bottom:42px;
}

/* BUTTONS */

.wiw-buttons{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:70px;
}

.wiw-btn{
  padding:18px 34px;
  border-radius:70px;
  text-decoration:none;
  font-size:16px;
  font-weight:600;
  transition:.4s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:240px;
}

.wiw-btn-primary{
  background:linear-gradient(135deg,var(--gold),#c19314);
  color:#000;
  box-shadow:0 15px 40px rgba(212,175,55,.28);
}

.wiw-btn-primary:hover{
  transform:translateY(-5px);
  color: #000;
}

.wiw-btn-secondary{
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(10px);
  color:#fff;
}

.wiw-btn-secondary:hover{
  background:#fff;
  color:#000;
  transform:translateY(-5px);
}

/* STATS */

.wiw-stats{
  display:flex;
  align-items:center;
  gap:70px;
  flex-wrap:wrap;
}

.wiw-stat h3{
  color:#fff;
  font-size:48px;
  font-family:'Cinzel',serif;
  margin-bottom:8px;
}

.wiw-stat p{
  color:rgba(255,255,255,.7);
  font-size:16px;
}

/* SCROLL */

.wiw-scroll{
  position:absolute;
  right:45px;
  bottom:40px;
  z-index:10;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

.wiw-scroll span{
  color:#fff;
  letter-spacing:3px;
  font-size:12px;
}

.wiw-line{
  width:1px;
  height:90px;
  background:rgba(255,255,255,.2);
  overflow:hidden;
  position:relative;
}

.wiw-line::after{
  content:'';
  position:absolute;
  width:100%;
  height:30px;
  background:var(--gold);
  animation:scrollAnim 2s infinite;
}

/* ANIMATIONS */

@keyframes zoomVideo{
  from{
    transform:scale(1.08);
  }
  to{
    transform:scale(1.16);
  }
}

@keyframes floatGlow{
  0%{
    transform:translateY(-50%) translateX(0px);
  }
  50%{
    transform:translateY(-53%) translateX(-20px);
  }
  100%{
    transform:translateY(-50%) translateX(0px);
  }
}

@keyframes scrollAnim{
  0%{
    transform:translateY(-100%);
  }
  100%{
    transform:translateY(300%);
  }
}

/* =========================
TABLET
========================= */

@media(max-width:991px){

  .wiw-container{
    padding:100px 50px;
  }

  .wiw-title{
    font-size:64px;
  }

  .wiw-subtitle{
    font-size:18px;
  }

  .wiw-stats{
    gap:40px;
  }

}

/* =========================
MOBILE
========================= */

@media(max-width:767px){

  .wiw-hero{
    min-height:auto;
    padding:100px 0 80px;
  }

  .wiw-container{
    padding:0 24px;
  }

  .wiw-content{
    max-width:100%;
  }

  .wiw-tag{
    font-size:13px;
    line-height:1.6;
    padding:12px 18px;
    margin-bottom:24px;
  }

  .wiw-title{
    font-size:44px;
    line-height:1.1;
    letter-spacing:-1px;
    margin-bottom:24px;
  }

  .wiw-subtitle{
    font-size:17px;
    line-height:1.8;
    margin-bottom:34px;
  }

  .wiw-buttons{
    flex-direction:column;
    align-items:stretch;
    gap:14px;
    margin-bottom:50px;
  }

  .wiw-btn{
    width:100%;
    min-width:100%;
    padding:18px 20px;
    font-size:15px;
  }

  .wiw-stats{
    gap:28px;
    flex-direction:column;
    align-items:flex-start;
  }

  .wiw-stat h3{
    font-size:38px;
  }

  .wiw-stat p{
    font-size:15px;
  }

  .wiw-scroll{
    display:none;
  }

  .wiw-glow{
    width:300px;
    height:300px;
    right:-100px;
  }

}

/* =========================
About Us SECTION
========================= */

.wiw-exp-section{
  position:relative;
  padding:120px 0;
  background:#090909;
  overflow:hidden;
  font-family:'Inter',sans-serif;
}

/* BACKGROUND GLOW */

.wiw-exp-section::before{
  content:'';
  position:absolute;
  width:600px;
  height:600px;
  background:radial-gradient(circle, rgba(212,175,55,.08), transparent 70%);
  top:-200px;
  left:-200px;
  filter:blur(40px);
}

/* CONTAINER */

.wiw-exp-container{
  width:100%;
  max-width:1400px;
  margin:auto;
  padding:0 80px;
  position:relative;
  z-index:2;
}

/* GRID */

.wiw-exp-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

/* LEFT CONTENT */

.wiw-exp-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 22px;
  border-radius:50px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#e7d39f;
  font-size:14px;
  letter-spacing:1px;
  margin-bottom:28px;
}

.wiw-exp-tag::before{
  content:'';
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 15px var(--gold);
}

/* TITLE */

.wiw-exp-title{
  font-family:'Cinzel',serif;
  font-size:50px;
  line-height:1.1;
  color:#fff;
  margin-bottom:28px;
  font-weight:700;
}

.wiw-exp-title span{
  color:var(--gold);
}

/* TEXT */

.wiw-exp-text{
  color:rgba(255,255,255,.75);
  font-size:16px;
  line-height:1.9;
  margin-bottom:40px;
  text-align: justify;
}

/* FEATURES */

.wiw-exp-features{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.wiw-exp-feature{
  display:flex;
  align-items:flex-start;
  gap:16px;
}

.wiw-exp-icon{
  width:46px;
  height:46px;
  min-width:46px;
  border-radius:14px;
  background:rgba(212,175,55,.12);
  border:1px solid rgba(212,175,55,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  font-size:18px;
}

.wiw-exp-feature h4{
  color:#fff;
  font-size:18px;
  margin-bottom:6px;
}

.wiw-exp-feature p{
  color:rgba(255,255,255,.68);
  font-size:15px;
  line-height:1.7;
}

/* RIGHT SIDE */

.wiw-card-stack{
  position:relative;
  height:680px;
}

/* CARD */

.wiw-card{
  position:absolute;
  width:100%;
  border-radius:28px;
  overflow:hidden;
  background:#111;
  border:1px solid rgba(255,255,255,.08);
  transition:.5s ease;
  cursor:pointer;
  box-shadow:0 20px 60px rgba(0,0,0,.45);
}

/* CARD IMAGES */

.wiw-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:1s ease;
}

/* OVERLAY */

.wiw-card-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(to top, rgba(0,0,0,.88), transparent 55%);
  display:flex;
  align-items:flex-end;
  padding:35px;
}

/* CARD TEXT */

.wiw-card-content h3{
  color:#fff;
  font-size:30px;
  margin-bottom:10px;
  font-family:'Cinzel',serif;
}

.wiw-card-content p{
  color:rgba(255,255,255,.78);
  line-height:1.7;
  font-size:15px;
}

/* CARD POSITIONS */

.wiw-card-1{
  top:0;
  left:0;
  height:100%;
  z-index:3;
}

.wiw-card-2{
  top:35px;
  left:35px;
  height:100%;
  z-index:2;
  opacity:.35;
  transform:scale(.96);
}

.wiw-card-3{
  top:70px;
  left:70px;
  height:100%;
  z-index:1;
  opacity:.15;
  transform:scale(.92);
}

/* HOVER */

.wiw-card-stack:hover .wiw-card-1{
  transform:translateY(-10px);
}

.wiw-card-stack:hover .wiw-card-1 img{
  transform:scale(1.08);
}

/* FLOATING BADGE */

.wiw-floating-badge{
  position:absolute;
  top:25px;
  right:25px;
  z-index:5;
  padding:14px 18px;
  border-radius:18px;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
}

.wiw-floating-badge strong{
  display:block;
  color:var(--gold);
  font-size:20px;
  margin-bottom:4px;
}

/* =========================
TABLET
========================= */

@media(max-width:991px){

  .wiw-exp-container{
    padding:0 40px;
  }

  .wiw-exp-grid{
    grid-template-columns:1fr;
    gap:60px;
  }

  .wiw-exp-title{
    font-size:46px;
  }

}

/* =========================
MOBILE
========================= */

@media(max-width:767px){

  .wiw-exp-section{
    padding:80px 0;
  }

  .wiw-exp-container{
    padding:0 22px;
  }

  .wiw-exp-title{
    font-size:36px;
    line-height:1.2;
  }

  .wiw-exp-text{
    font-size:16px;
    line-height:1.8;
  }

  .wiw-card-stack{
    height:460px;
  }

  .wiw-card-2{
    left:15px;
    top:15px;
  }

  .wiw-card-3{
    left:30px;
    top:30px;
  }

  .wiw-card-overlay{
    padding:24px;
  }

  .wiw-card-content h3{
    font-size:24px;
  }

  .wiw-floating-badge{
    top:15px;
    right:15px;
    padding:10px 14px;
  }

}

/* =========================
Product Show Case SECTION
========================= */

.wiw-tabs-section{
  position:relative;
  background:#050505;
  padding:0;
  overflow:hidden;
  font-family:'Inter',sans-serif;
}

/* TOP TABS */

.wiw-tabs-top{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  border-bottom:1px solid rgba(255,255,255,.08);
}

/* TAB */

.wiw-tab-btn{
  position:relative;
  padding:34px 28px;
  background:#050505;
  border-right:1px solid rgba(255,255,255,.08);
  cursor:pointer;
  transition:.4s ease;
  overflow:hidden;
}

.wiw-tab-btn:last-child{
  border-right:none;
}

/* ACTIVE */

.wiw-tab-btn.active{
  background:rgba(255,255,255,.03);
}

/* HOVER */

.wiw-tab-btn:hover{
  background:rgba(255,255,255,.03);
}

/* GOLD LINE */

.wiw-tab-btn::before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:3px;
  background:var(--gold);
  transform:scaleX(0);
  transition:.4s ease;
}

.wiw-tab-btn.active::before{
  transform:scaleX(1);
}

/* TAB TITLE */

.wiw-tab-name{
  color:#fff;
  font-size:20px;
  font-weight:700;
  margin-bottom:10px;
}

/* TAB TEXT */

.wiw-tab-text{
  color:rgba(255,255,255,.6);
  font-size:14px;
  line-height:1.7;
}

/* =========================
SHOWCASE AREA
========================= */

.wiw-tabs-content{
  position:relative;
  min-height:704px;
}

/* PANEL */

.wiw-car-panel{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transition:.7s ease;
}

.wiw-car-panel.active{
  opacity:1;
  visibility:visible;
  position:relative;
  height: 704px;
}

/* BG */

.wiw-car-bg{
  position:absolute;
  inset:0;
}

.wiw-car-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.08);
}

/* OVERLAY */

.wiw-car-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(to right, rgba(0,0,0,.92), rgba(0,0,0,.35)),
  linear-gradient(to top, rgba(0,0,0,.88), transparent 65%);
}

/* INNER */

.wiw-car-inner{
  position:relative;
  z-index:5;
  min-height:704px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  padding:90px;
}

/* LEFT */

.wiw-car-left{
  max-width:620px;
}

/* TAG */

.wiw-car-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 22px;
  border-radius:50px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#e8d29b;
  font-size:14px;
  margin-bottom:28px;
  backdrop-filter:blur(12px);
}

.wiw-car-tag::before{
  content:'';
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 15px var(--gold);
}

/* TITLE */

.wiw-car-title{
  font-family:'Cinzel',serif;
  font-size:clamp(58px,5vw,96px);
  line-height:1;
  color:#fff;
  margin-bottom:28px;
  letter-spacing:-2px;
}

.wiw-car-title span{
  color:var(--gold);
  display:block;
}

/* TEXT */

.wiw-car-desc{
  color:rgba(255,255,255,.74);
  font-size:18px;
  line-height:1.9;
  margin-bottom:42px;
  max-width:560px;
}

/* BUTTONS */

.wiw-car-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

/* BUTTON */

.wiw-car-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:18px 34px;
  border-radius:60px;
  text-decoration:none;
  font-weight:700;
  transition:.4s ease;
}

/* PRIMARY */

.wiw-car-btn-primary{
  background:linear-gradient(135deg,var(--gold),#b8870f);
  color:#000;
}

.wiw-car-btn-primary:hover{
  transform:translateY(-5px);
}

/* SECONDARY */

.wiw-car-btn-secondary{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  backdrop-filter:blur(12px);
  color:#fff;
}

.wiw-car-btn-secondary:hover{
  background:#fff;
  color:#000;
}

/* RIGHT */

.wiw-car-right{
  position:relative;
  width:45%;
}

/* CAR IMAGE */

.wiw-car-image{
  position:relative;
  z-index:4;
}

.wiw-car-image img{
  width:100%;
  max-width:900px;
  object-fit:contain;
  filter:drop-shadow(0 40px 60px rgba(0,0,0,.45));
}

/* FLOAT CARD */

.wiw-car-floating{
  position:absolute;
  right:10px;
  top:60px;
  padding:16px;
  border-radius:28px;
  background:rgba(15,15,15,.82);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(14px);
  z-index:6;
  min-width:240px;
}

/* FLOAT TITLE */

.wiw-car-floating h3{
  font-size:45px;
  color:var(--gold);
  margin-bottom:8px;
  font-family:'Cinzel',serif;
}

/* FLOAT TEXT */

.wiw-car-floating p{
  color:#fff;
  font-size:13px;
  line-height:1.7;
}

/* =========================
TABLET
========================= */

@media(max-width:991px){

  .wiw-tabs-top{
    grid-template-columns:repeat(3,1fr);
  }

  .wiw-car-inner{
    flex-direction:column;
    justify-content:center;
    padding:70px 40px;
    text-align:center;
  }

  .wiw-car-left{
    max-width:100%;
  }

  .wiw-car-desc{
    margin:auto auto 40px;
  }

  .wiw-car-buttons{
    justify-content:center;
  }

  .wiw-car-right{
    width:100%;
  }

  .wiw-car-floating{
    position:relative;
    top:auto;
    right:auto;
    margin:30px auto 0;
    width:max-content;
  }

}

/* =========================
MOBILE
========================= */

@media(max-width:767px){

  .wiw-tabs-top{
    display:flex;
    overflow-x:auto;
    white-space:nowrap;
    scrollbar-width:none;
  }
  
    .wiw-tabs-top::-webkit-scrollbar{
    display:none;
  }

  .wiw-tab-btn{
    min-width:260px;
    flex-shrink:0;
  }

  .wiw-car-inner{
    min-height:auto;
    padding:70px 22px;
  }

  .wiw-tabs-content{
    min-height:auto;
  }

  .wiw-car-panel{
    position:relative;
  }

  .wiw-car-title{
    font-size:42px;
    line-height:1.08;
    letter-spacing:-1px;
  }

  .wiw-car-desc{
    font-size:16px;
    line-height:1.8;
  }

  .wiw-car-buttons{
    flex-direction:column;
  }

  .wiw-car-btn{
    width:100%;
  }

  .wiw-car-floating{
    width:100%;
    text-align:center;
    border-radius:22px;
  }

  .wiw-car-floating h3{
    font-size:40px;
  }

}

/* =========================
Experience SECTION
========================= */

.wiw-story-section{
  position:relative;
  padding:120px 0;
  background:#080808;
  overflow:hidden;
  font-family:'Inter',sans-serif;
}

/* GLOW */

.wiw-story-section::before{
  content:'';
  position:absolute;
  width:700px;
  height:700px;
  background:radial-gradient(circle, rgba(212,175,55,.07), transparent 70%);
  left:-250px;
  bottom:-250px;
  filter:blur(60px);
}

/* CONTAINER */

.wiw-story-container{
  width:100%;
  max-width:1500px;
  margin:auto;
  padding:0 90px;
  position:relative;
  z-index:2;
}

/* TOP */

.wiw-story-top{
  text-align:center;
  margin-bottom:70px;
}

/* TAG */

.wiw-story-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 24px;
  border-radius:50px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#e8d29b;
  font-size:14px;
  margin-bottom:26px;
}

.wiw-story-tag::before{
  content:'';
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 15px var(--gold);
}

/* TITLE */

.wiw-story-title{
  font-family:'Cinzel',serif;
  font-size:47px;
  line-height:1.05;
  color:#fff;
  margin-bottom:26px;
  letter-spacing:-2px;
}

.wiw-story-title span{
  color:var(--gold);
}

/* TEXT */

.wiw-story-text{
  max-width:850px;
  margin:auto;
  color:rgba(255,255,255,.72);
  font-size:17px;
  line-height:1.9;
}

/* =========================
GRID
========================= */

.wiw-story-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:stretch;
  height: 700px;
}

/* LEFT LARGE CARD */

.wiw-story-main{
  position:relative;
  border-radius:36px;
  overflow:hidden;
  min-height:700px;
  border:1px solid rgba(255,255,255,.08);
}

/* IMAGE */

.wiw-story-main img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:1.2s ease;
}

/* OVERLAY */

.wiw-story-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(to top, rgba(0,0,0,.94), transparent 60%);
  display:flex;
  align-items:flex-end;
  padding:45px;
}

/* CONTENT */

.wiw-story-content h3{
  font-family:'Cinzel',serif;
  font-size:52px;
  color:#fff;
  margin-bottom:18px;
  line-height:1.1;
}

.wiw-story-content p{
  color:rgba(255,255,255,.78);
  font-size:17px;
  line-height:1.9;
  max-width:650px;
  margin-bottom:30px;
}

/* BUTTON */

.wiw-story-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:18px 34px;
  border-radius:60px;
  background:linear-gradient(135deg,var(--gold),#b8870f);
  color:#000;
  font-weight:700;
  text-decoration:none;
  transition:.4s ease;
}

.wiw-story-btn:hover{
  transform:translateY(-4px);
}

/* RIGHT CARDS */

.wiw-story-right{
  display:flex;
  flex-direction:column;
  gap:30px;
  height:700px;
}

/* MINI CARD */

.wiw-mini-card{
  position:relative;
  border-radius:30px;
  overflow:hidden;
  height:365px;
  border:1px solid rgba(255,255,255,.08);
  cursor:pointer;
  transition:.5s ease;
}

.wiw-mini-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:1s ease;
}

.wiw-mini-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(to top, rgba(0,0,0,.94), transparent 60%);
  display:flex;
  align-items:flex-end;
  padding:32px;
}

.wiw-mini-content h4{
  font-family:'Cinzel',serif;
  font-size:32px;
  color:#fff;
  margin-bottom:12px;
}

.wiw-mini-content p{
  color:rgba(255,255,255,.74);
  font-size:15px;
  line-height:1.8;
}

/* HOVER */

.wiw-story-main:hover img,
.wiw-mini-card:hover img{
  transform:scale(1.08);
}

.wiw-mini-card:hover{
  transform:translateY(-10px);
}

/* FLOATING STATS */

.wiw-story-floating{
  position:absolute;
  top:30px;
  right:30px;
  padding:20px 24px;
  border-radius:24px;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.08);
  z-index:5;
}

.wiw-story-floating h5{
  color:var(--gold);
  font-size:28px;
  margin-bottom:4px;
}

.wiw-story-floating p{
  color:#fff;
  font-size:14px;
}

/* =========================
TABLET
========================= */

@media(max-width:991px){

  .wiw-story-container{
    padding:0 40px;
  }

  .wiw-story-grid{
    grid-template-columns:1fr;
  }

  .wiw-story-main{
    min-height:650px;
  }

}

/* =========================
MOBILE
========================= */

@media(max-width:767px){

  .wiw-story-section{
    padding:80px 0;
  }

  .wiw-story-container{
    padding:0 22px;
  }

  .wiw-story-top{
    margin-bottom:45px;
  }

  .wiw-story-title{
    font-size:40px;
    line-height:1.1;
    letter-spacing:-1px;
  }

  .wiw-story-text{
    font-size:16px;
    line-height:1.8;
  }

  .wiw-story-main{
    min-height:520px;
    border-radius:24px;
  }

  .wiw-story-overlay{
    padding:26px;
  }

  .wiw-story-content h3{
    font-size:34px;
  }

  .wiw-story-content p{
    font-size:14px;
    line-height:1.8;
  }

  .wiw-mini-card{
    height:260px;
    border-radius:22px;
  }

  .wiw-mini-overlay{
    padding:22px;
  }

  .wiw-mini-content h4{
    font-size:24px;
  }

  .wiw-mini-content p{
    font-size:13px;
  }

  .wiw-story-floating{
    top:18px;
    right:18px;
    padding:14px 18px;
  }

  .wiw-story-floating h5{
    font-size:22px;
  }

}

/* =========================
Gallery SECTION
========================= */

.wiw-gallery-section{
  position:relative;
  padding:120px 0;
  background:#080808;
  overflow:hidden;
  font-family:'Inter',sans-serif;
}

/* GLOW */

.wiw-gallery-section::before{
  content:'';
  position:absolute;
  width:700px;
  height:700px;
  background:radial-gradient(circle, rgba(212,175,55,.07), transparent 70%);
  top:-250px;
  left:-250px;
  filter:blur(60px);
}

/* CONTAINER */

.wiw-gallery-container{
  width:100%;
  max-width:1600px;
  margin:auto;
  padding:0 90px;
  position:relative;
  z-index:2;
}

/* TOP */

.wiw-gallery-top{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:50px;
  margin-bottom:70px;
  flex-wrap:wrap;
}

/* LEFT */

.wiw-gallery-left{
  max-width:760px;
}

/* TAG */

.wiw-gallery-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 24px;
  border-radius:50px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#e8d29b;
  font-size:14px;
  margin-bottom:26px;
}

.wiw-gallery-tag::before{
  content:'';
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 15px var(--gold);
}

/* TITLE */

.wiw-gallery-title{
  font-family:'Cinzel',serif;
  font-size:50px;
  line-height:1.05;
  color:#fff;
  margin-bottom:24px;
  letter-spacing:-2px;
}

.wiw-gallery-title span{
  color:var(--gold);
}

/* TEXT */

.wiw-gallery-text{
  color:rgba(255,255,255,.72);
  font-size:18px;
  line-height:1.9;
  max-width:700px;
}

/* BUTTON */

.wiw-gallery-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:18px 34px;
  border-radius:60px;
  background:linear-gradient(135deg,var(--gold),#b8870f);
  color:#000;
  font-weight:700;
  text-decoration:none;
  transition:.4s ease;
  height:max-content;
}

.wiw-gallery-btn:hover{
  transform:translateY(-5px);
}

/* =========================
MASONRY GRID
========================= */

.wiw-gallery-grid{
  columns:3 320px;
  column-gap:24px;
}

/* ITEM */

.wiw-gallery-item{
  position:relative;
  margin-bottom:24px;
  break-inside:avoid;
  border-radius:30px;
  overflow:hidden;
  cursor:pointer;
  border:1px solid rgba(255,255,255,.08);
  transition:.5s ease;
}

/* IMAGE */

.wiw-gallery-item img{
  width:100%;
  display:block;
  transition:1.2s ease;
}

/* OVERLAY */

.wiw-gallery-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(to top, rgba(0,0,0,.95), transparent 60%);
  display:flex;
  align-items:flex-end;
  padding:28px;
  opacity:0;
  transition:.5s ease;
}

/* CONTENT */

.wiw-gallery-content h3{
  font-family:'Cinzel',serif;
  color:#fff;
  font-size:28px;
  margin-bottom:10px;
}

.wiw-gallery-content p{
  color:rgba(255,255,255,.72);
  font-size:14px;
  line-height:1.8;
}

/* HOVER */

.wiw-gallery-item:hover{
  transform:translateY(-10px);
}

.wiw-gallery-item:hover img{
  transform:scale(1.08);
}

.wiw-gallery-item:hover .wiw-gallery-overlay{
  opacity:1;
}

/* PLAY BUTTON */

.wiw-gallery-play{
  position:absolute;
  top:24px;
  right:24px;
  width:70px;
  height:70px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:22px;
  z-index:5;
}

/* =========================
TABLET
========================= */

@media(max-width:991px){

  .wiw-gallery-container{
    padding:0 40px;
  }

  .wiw-gallery-top{
    align-items:flex-start;
    flex-direction:column;
  }

}

/* =========================
MOBILE
========================= */

@media(max-width:767px){

  .wiw-gallery-section{
    padding:80px 0;
  }

  .wiw-gallery-container{
    padding:0 22px;
  }

  .wiw-gallery-top{
    gap:28px;
    margin-bottom:45px;
  }

  .wiw-gallery-title{
    font-size:40px;
    line-height:1.1;
    letter-spacing:-1px;
  }

  .wiw-gallery-text{
    font-size:16px;
    line-height:1.8;
  }

  .wiw-gallery-grid{
    columns:1;
    column-gap:0;
  }

  .wiw-gallery-item{
    border-radius:22px;
    margin-bottom:18px;
  }

  .wiw-gallery-overlay{
    opacity:1;
    padding:22px;
  }

  .wiw-gallery-content h3{
    font-size:24px;
  }

  .wiw-gallery-content p{
    font-size:13px;
  }

  .wiw-gallery-play{
    width:54px;
    height:54px;
    font-size:18px;
    top:16px;
    right:16px;
  }

  .wiw-gallery-btn{
    width:100%;
  }

}

/* =========================
Testimonial SECTION
========================= */

.wiw-testimonial-section{
  position:relative;
  padding:120px 0;
  background:#050505;
  overflow:hidden;
  font-family:'Inter',sans-serif;
}

/* GLOW */

.wiw-testimonial-section::before{
  content:'';
  position:absolute;
  width:700px;
  height:700px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(212,175,55,.08), transparent 70%);
  top:-250px;
  right:-250px;
  filter:blur(80px);
}

/* CONTAINER */

.wiw-testimonial-container{
  width:100%;
  max-width:1450px;
  margin:auto;
  padding:0 70px;
  position:relative;
  z-index:2;
}

/* =========================
TOP
========================= */

.wiw-testimonial-top{
  text-align:center;
  margin-bottom:70px;
}

/* TAG */

.wiw-testimonial-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 22px;
  border-radius:50px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  color:#e8d29b;
  font-size:14px;
  margin-bottom:26px;
  backdrop-filter:blur(12px);
}

.wiw-testimonial-tag::before{
  content:'';
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 15px var(--gold);
}

/* TITLE */

.wiw-testimonial-title{
  font-family:'Cinzel',serif;
  font-size:47px;
  line-height:1.08;
  color:#fff;
  margin-bottom:20px;
  letter-spacing:-2px;
}

.wiw-testimonial-title span{
  color:var(--gold);
}

/* TEXT */

.wiw-testimonial-text{
  color:rgba(255,255,255,.68);
  font-size:18px;
  line-height:1.9;
  max-width:850px;
  margin:auto;
}

/* =========================
GRID
========================= */

.wiw-testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  align-items:start;
}

/* COLUMN */

.wiw-testimonial-column{
  display:flex;
  flex-direction:column;
  gap:24px;
}

/* =========================
CARD
========================= */

.wiw-testimonial-card{
  position:relative;
  padding:34px;
  border-radius:30px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  transition:.4s ease;
  overflow:hidden;
  backdrop-filter:blur(12px);
}

/* HOVER */

.wiw-testimonial-card:hover{
  transform:translateY(-8px);
  border-color:rgba(212,175,55,.18);
  box-shadow:0 30px 60px rgba(0,0,0,.25);
}

/* GOLD GLOW */

.wiw-testimonial-card::before{
  content:'';
  position:absolute;
  width:200px;
  height:200px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(212,175,55,.08), transparent 70%);
  top:-80px;
  right:-80px;
}

/* STARS */

.wiw-stars{
  display:flex;
  gap:6px;
  margin-bottom:22px;
  color:var(--gold);
  font-size:18px;
}

/* REVIEW */

.wiw-review{
  color:rgba(255,255,255,.72);
  font-size:16px;
  line-height:1.9;
  margin-bottom:30px;
}

/* PROFILE */

.wiw-profile{
  display:flex;
  align-items:center;
  gap:16px;
}

/* IMAGE */

.wiw-profile img{
  width:58px;
  height:58px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid rgba(255,255,255,.08);
}

/* INFO */

.wiw-profile-info h4{
  color:#fff;
  font-size:18px;
  margin-bottom:6px;
}

.wiw-profile-info p{
  color:rgba(255,255,255,.55);
  font-size:14px;
}

/* =========================
TABLET
========================= */

@media(max-width:991px){

  .wiw-testimonial-container{
    padding:0 40px;
  }

  .wiw-testimonial-grid{
    grid-template-columns:1fr;
  }

}

/* =========================
MOBILE
========================= */

@media(max-width:767px){

  .wiw-testimonial-section{
    padding:80px 0;
  }

  .wiw-testimonial-container{
    padding:0 22px;
  }

  .wiw-testimonial-top{
    margin-bottom:45px;
  }

  .wiw-testimonial-title{
    font-size:38px;
    line-height:1.12;
    letter-spacing:-1px;
  }

  .wiw-testimonial-text{
    font-size:16px;
    line-height:1.8;
  }

  .wiw-testimonial-card{
    padding:24px;
    border-radius:22px;
  }

  .wiw-review{
    font-size:15px;
    line-height:1.8;
  }

  .wiw-profile img{
    width:50px;
    height:50px;
  }

  .wiw-profile-info h4{
    font-size:16px;
  }

}

/* =========================
FAQ SECTION
========================= */

.wiw-modern-faq{
  position:relative;
  padding:120px 0;
  background:#050505;
  overflow:hidden;
  font-family:'Inter',sans-serif;
}

/* GLOW */

.wiw-modern-faq::before{
  content:'';
  position:absolute;
  width:650px;
  height:650px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(212,175,55,.06), transparent 70%);
  top:-250px;
  left:-250px;
  filter:blur(80px);
}

/* CONTAINER */

.wiw-modern-faq-container{
  width:100%;
  max-width:1450px;
  margin:auto;
  padding:0 70px;
  position:relative;
  z-index:2;
}

/* GRID */

.wiw-modern-faq-grid{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:80px;
  align-items:start;
}

/* =========================
LEFT
========================= */

.wiw-modern-faq-left{
  position:sticky;
  top:120px;
}

/* TAG */

.wiw-modern-faq-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;
  border-radius:40px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  color:#e8d29b;
  font-size:13px;
  margin-bottom:30px;
  backdrop-filter:blur(12px);
}

.wiw-modern-faq-tag::before{
  content:'';
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 10px var(--gold);
}

/* TITLE */

.wiw-modern-faq-title{
  font-family:'Cinzel',serif;
  font-size:clamp(42px,5vw,72px);
  line-height:1.08;
  color:#fff;
  margin-bottom:26px;
  letter-spacing:-2px;
}

/* TEXT */

.wiw-modern-faq-text{
  color:rgba(255,255,255,.66);
  font-size:18px;
  line-height:1.9;
  margin-bottom:40px;
}

/* BUTTON */

.wiw-modern-faq-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:16px 28px;
  border-radius:60px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:.35s ease;
}

.wiw-modern-faq-btn:hover{
  background:var(--gold);
  color:#000;
  transform:translateY(-4px);
}

/* =========================
RIGHT
========================= */

.wiw-modern-faq-right{
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* ITEM */

.wiw-modern-faq-item{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  border-radius:20px;
  overflow:hidden;
  transition:.35s ease;
  backdrop-filter:blur(12px);
}

/* ACTIVE */

.wiw-modern-faq-item.active{
  border-color:rgba(212,175,55,.2);
  box-shadow:0 20px 40px rgba(0,0,0,.2);
}

/* HEADER */

.wiw-modern-faq-head{
  padding:24px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  cursor:pointer;
}

/* LEFT CONTENT */

.wiw-modern-faq-question{
  display:flex;
  align-items:center;
  gap:18px;
}

/* PLUS */

.wiw-modern-faq-plus{
  min-width:42px;
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  font-size:22px;
  transition:.35s ease;
}

/* ACTIVE PLUS */

.wiw-modern-faq-item.active .wiw-modern-faq-plus{
  background:var(--gold);
  color:#000;
  transform:rotate(45deg);
}

/* QUESTION */

.wiw-modern-faq-question h3{
  color:#fff;
  font-size:20px;
  line-height:1.6;
  font-weight:600;
  margin:0;
}

/* CONTENT */

.wiw-modern-faq-content{
  max-height:0;
  overflow:hidden;
  transition:max-height .45s ease;
}

/* INNER */

.wiw-modern-faq-inner{
  padding:0 28px 26px 88px;
}

/* ANSWER */

.wiw-modern-faq-inner p{
  color:rgba(255,255,255,.68);
  font-size:16px;
  line-height:1.9;
}

/* =========================
TABLET
========================= */

@media(max-width:991px){

  .wiw-modern-faq-container{
    padding:0 40px;
  }

  .wiw-modern-faq-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .wiw-modern-faq-left{
    position:relative;
    top:auto;
  }

}

/* =========================
MOBILE
========================= */

@media(max-width:767px){

  .wiw-modern-faq{
    padding:80px 0;
  }

  .wiw-modern-faq-container{
    padding:0 22px;
  }

  .wiw-modern-faq-grid{
    gap:40px;
  }

  .wiw-modern-faq-title{
    font-size:40px;
    line-height:1.1;
    letter-spacing:-1px;
  }

  .wiw-modern-faq-text{
    font-size:16px;
    line-height:1.8;
  }

  .wiw-modern-faq-head{
    padding:20px;
  }

  .wiw-modern-faq-question{
    gap:14px;
  }

  .wiw-modern-faq-plus{
    min-width:38px;
    width:38px;
    height:38px;
    font-size:20px;
  }

  .wiw-modern-faq-question h3{
    font-size:16px;
    line-height:1.7;
  }

  .wiw-modern-faq-inner{
    padding:0 20px 20px 20px;
  }

  .wiw-modern-faq-inner p{
    font-size:14px;
    line-height:1.8;
  }

}

/* =========================
Enquiry SECTION
========================= */

.wiw-contact-section{
  position:relative;
  padding-bottom:50px;
  background:#050505;
  overflow:hidden;
  font-family:'Inter',sans-serif;
}

/* GLOW */

.wiw-contact-section::before{
  content:'';
  position:absolute;
  width:700px;
  height:700px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(212,175,55,.08), transparent 70%);
  left:-250px;
  bottom:-250px;
  filter:blur(80px);
}

/* CONTAINER */

.wiw-contact-container{
  width:100%;
  max-width:1400px;
  margin:auto;
  padding:0 70px;
  position:relative;
  z-index:2;
}

/* BOX */

.wiw-contact-box{
  position:relative;
  background:linear-gradient(135deg,#111111,#181818);
  border:1px solid rgba(255,255,255,.08);
  border-radius:30px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:unset;
  max-height:720px;
  box-shadow:0 25px 60px rgba(0,0,0,.28);
}

/* =========================
LEFT SIDE
========================= */

.wiw-contact-left{
  position:relative;
  padding:55px;
  background:#0c0c0c;
  display:flex;
  align-items:center;
  height:720px;
}

/* FORM BOX */

.wiw-contact-form-wrap{
  width:100%;
}

/* TAG */

.wiw-contact-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 20px;
  border-radius:50px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  color:#e8d29b;
  font-size:13px;
  margin-bottom:30px;
}

.wiw-contact-tag::before{
  content:'';
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 10px var(--gold);
}

/* TITLE */

.wiw-contact-form-title{
  color:#fff;
  font-family:'Cinzel',serif;
  font-size:42px;
  line-height:1.1;
  margin-bottom:18px;
}

.wiw-contact-form-title span{
  color:var(--gold);
}

/* TEXT */

.wiw-contact-form-text{
  color:rgba(255,255,255,.66);
  font-size:16px;
  line-height:1.9;
  margin-bottom:38px;
  max-width:520px;
}

/* FORM */

.wiw-contact-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* INPUT */

.wiw-contact-input{
  width:100%;
  height:62px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:0 22px;
  color:#fff;
  font-size:15px;
  outline:none;
  transition:.35s ease;
}

/* TEXTAREA */

.wiw-contact-textarea{
  width:100%;
  height:120px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:22px;
  color:#fff;
  font-size:15px;
  resize:none;
  outline:none;
  transition:.35s ease;
}

/* PLACEHOLDER */

.wiw-contact-input::placeholder,
.wiw-contact-textarea::placeholder{
  color:rgba(255,255,255,.35);
}

/* FOCUS */

.wiw-contact-input:focus,
.wiw-contact-textarea:focus{
  border-color:rgba(212,175,55,.4);
  box-shadow:0 0 0 4px rgba(212,175,55,.08);
}

/* BUTTON */

.wiw-contact-btn{
  width:max-content;
  padding:14px 30px;
  border:none;
  border-radius:60px;
  background:linear-gradient(135deg,var(--gold),#b8860b);
  color:#000;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  transition:.35s ease;
}

.wiw-contact-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 30px rgba(212,175,55,.2);
}

/* =========================
RIGHT SIDE
========================= */

.wiw-contact-right{
  position:relative;
  overflow:hidden;
  height: 720px;
}

/* IMAGE */

.wiw-contact-right img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* OVERLAY */

.wiw-contact-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(to right, rgba(0,0,0,.82), rgba(0,0,0,.2)),
  linear-gradient(to top, rgba(0,0,0,.6), transparent);
}

/* CONTENT */

.wiw-contact-content{
  position:absolute;
  left:55px;
  top:55px;
  z-index:5;
  max-width:480px;
}

/* SMALL */

.wiw-contact-small{
  color:#fff;
  font-size:14px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:16px;
}

/* BIG */

.wiw-contact-big{
  color:#fff;
  font-family:'Cinzel',serif;
  font-size:48px;
  line-height:1;
  margin-bottom:24px;
}

.wiw-contact-big span{
  color:var(--gold);
}

/* DESC */

.wiw-contact-desc{
  color:rgba(255,255,255,.72);
  font-size:17px;
  line-height:1.9;
}

/* =========================
TABLET
========================= */

@media(max-width:991px){

  .wiw-contact-container{
    padding:0 40px;
  }

  .wiw-contact-box{
    grid-template-columns:1fr;
  }

  .wiw-contact-right{
    min-height:500px;
  }

}

/* =========================
MOBILE
========================= */

@media(max-width:767px){

  .wiw-contact-section{
    padding:80px 0;
  }

  .wiw-contact-container{
    padding:0 22px;
  }

  .wiw-contact-box{
    border-radius:26px;
  }

  .wiw-contact-left{
    padding:28px;
  }

  .wiw-contact-form-title{
    font-size:36px;
  }

  .wiw-contact-form-text{
    font-size:15px;
    line-height:1.8;
  }

  .wiw-contact-input{
    height:56px;
    font-size:14px;
  }

  .wiw-contact-textarea{
    height:140px;
    font-size:14px;
  }

  .wiw-contact-btn{
    width:100%;
  }

  .wiw-contact-right{
    min-height:400px;
  }

  .wiw-contact-content{
    left:28px;
    right:28px;
    bottom:28px;
  }

  .wiw-contact-big{
    font-size:38px;
  }

  .wiw-contact-desc{
    font-size:15px;
    line-height:1.8;
  }

}

/* =========================
HEADER
========================= */

.wiw-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.06);
  font-family:'Inter',sans-serif;
  overflow:visible;
}

/* CONTAINER */

.wiw-header-container{
  width:100%;
  max-width:1450px;
  margin:auto;
  padding:0 20px;
}

/* NAVBAR */

.wiw-navbar{
  height:100px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* =========================
LOGO
========================= */

.wiw-logo img{
  width:278px;
  height: 55px;
}

/* =========================
MENU
========================= */

.wiw-menu{
  display:flex;
  align-items:center;
  gap:60px;
}

/* NAV ITEM */

.wiw-nav-item{
  position:relative;
}

/* LINK */

.wiw-nav-link{
  display:flex;
  align-items:center;
  gap:8px;
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:500;
  transition:.3s ease;
  padding:32px 0;
}

.wiw-nav-link:hover{
  color:var(--gold);
}

/* ARROW */

.wiw-nav-arrow{
  font-size:11px;
  transition:.3s ease;
}

.wiw-nav-item:hover .wiw-nav-arrow{
  transform:rotate(180deg);
}

/* =========================
RIGHT BUTTONS
========================= */

.wiw-header-buttons{
  display:flex;
  align-items:center;
  gap:14px;
}

/* WHATSAPP BUTTON */

.wiw-login-btn{
  padding:14px 24px;
  border-radius:50px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  text-decoration:none;
  font-size:14px;
  transition:.3s ease;
}

.wiw-login-btn:hover{
  border-color:rgba(212,175,55,.2);
  transform:translateY(-2px);
}

/* BOOK NOW */

.wiw-cta-btn{
  padding:14px 28px;
  border-radius:50px;
  background:linear-gradient(135deg,var(--gold),#b8860b);
  color:#000;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  transition:.35s ease;
}

.wiw-cta-btn:hover{
  transform:translateY(-3px);
}

/* =========================
MOBILE TOGGLE
========================= */

.wiw-mobile-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.wiw-mobile-toggle span{
  width:26px;
  height:2px;
  background:#fff;
  border-radius:20px;
}

/* =========================
INDIVIDUAL CAR MEGA MENU
========================= */

.wiw-car-menu{
  position:static;
}

/* MEGA MENU */

.wiw-car-mega{
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%) translateY(20px);

  width:980px;
  max-width:95vw;

  background:#0a0a0a;
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  padding:34px;

  opacity:0;
  visibility:hidden;

  transition:.4s ease;
  box-shadow:0 35px 80px rgba(0,0,0,.45);

  z-index:999;
}

/* SHOW */

.wiw-car-menu:hover .wiw-car-mega{
  opacity:1;
  visibility:visible;
  transform:translateX(-50%) translateY(0);
}

/* GRID */

.wiw-car-mega-grid{
  display:grid;
  grid-template-columns:1fr 430px;
  gap:34px;
  align-items:center;
}

/* =========================
LEFT CONTENT
========================= */

.wiw-car-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 20px;
  border-radius:50px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  color:#e8d29b;
  font-size:13px;
  margin-bottom:28px;
}

.wiw-car-badge::before{
  content:'';
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gold);
}

/* TITLE */

.wiw-car-mega-left h2{
  color:#fff;
  font-size:58px;
  line-height:1;
  margin-bottom:22px;
  font-family:'Cinzel',serif;
}

.wiw-car-mega-left h2 span{
  color:var(--gold);
}

/* TEXT */

.wiw-car-mega-left p{
  color:rgba(255,255,255,.68);
  font-size:16px;
  line-height:1.9;
  margin-bottom:28px;
}

/* FEATURES */

.wiw-car-mega-left ul{
  list-style:none;
  padding:0;
  margin:0 0 32px;
}

.wiw-car-mega-left ul li{
  position:relative;
  padding-left:24px;
  color:#fff;
  margin-bottom:16px;
  font-size:15px;
  line-height:1.7;
}

.wiw-car-mega-left ul li::before{
  content:'';
  position:absolute;
  left:0;
  top:8px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gold);
}

/* BUTTON */

.wiw-car-mega-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 30px;
  border-radius:60px;
  background:linear-gradient(135deg,var(--gold),#b8860b);
  color:#000;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  transition:.35s ease;
}

.wiw-car-mega-btn:hover{
  transform:translateY(-3px);
}

/* =========================
IMAGE SIDE
========================= */

.wiw-car-mega-image{
  position:relative;
  min-height:520px;
  border-radius:24px;
  overflow:hidden;
}

.wiw-car-mega-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* OVERLAY */

.wiw-car-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(to top, rgba(0,0,0,.7), transparent),
  linear-gradient(to right, rgba(0,0,0,.25), transparent);
}

/* =========================
TABLET
========================= */

@media(max-width:1200px){

  .wiw-header-container{
    padding:0 30px;
  }

  .wiw-car-mega{
    width:900px;
  }

  .wiw-car-mega-left h2{
    font-size:50px;
  }

}

/* =========================
MOBILE
========================= */

@media(max-width:991px){

  .wiw-header-container{
    padding:0 22px;
  }

  .wiw-navbar{
    height:78px;
  }

  .wiw-logo img{
    width:170px;
  }

  .wiw-mobile-toggle{
    display:flex;
  }

  .wiw-menu{
    position:fixed;
    top:78px;
    left:-100%;
    width:100%;
    height:calc(100vh - 78px);
    background:#050505;
    flex-direction:column;
    align-items:flex-start;
    padding:30px 22px;
    transition:.4s ease;
    overflow-y:auto;
    gap:0;
  }

  .wiw-menu.active{
    left:0;
  }

  .wiw-nav-item{
    width:100%;
  }

  .wiw-nav-link{
    width:100%;
    justify-content:space-between;
    padding:20px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
  }

  .wiw-header-buttons{
    display:none;
  }

  /* MOBILE MEGA */

  .wiw-car-mega{
    position:relative;
    left:auto;
    top:auto;
    transform:none;
    width:100%;
    opacity:1;
    visibility:visible;
    display:none;
    margin-top:18px;
    padding:24px;
  }

  .wiw-car-menu.active .wiw-car-mega{
    display:block;
  }

  .wiw-car-mega-grid{
    grid-template-columns:1fr;
  }

  .wiw-car-mega-image{
    min-height:260px;
  }

  .wiw-car-mega-left h2{
    font-size:42px;
  }

}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:600px){

  .wiw-car-mega{
    padding:20px;
    border-radius:22px;
  }

  .wiw-car-mega-left h2{
    font-size:34px;
  }

  .wiw-car-mega-left p{
    font-size:14px;
    line-height:1.8;
  }

  .wiw-car-mega-left ul li{
    font-size:14px;
  }

  .wiw-car-mega-image{
    min-height:220px;
  }

  .wiw-car-mega-btn{
    width:100%;
  }

}

/* =========================
 Premium FOOTER
========================= */

.wiw-footer{
  position:relative;
  background:#111111;
  overflow:hidden;
  padding-top:140px;
  font-family:'Inter',sans-serif;
}

/* SHAPE */

.wiw-footer-shape{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:140px;
  background:#1a1a1a;
  clip-path:polygon(0 45%,100% 0,100% 100%,0 100%);
}

/* CONTAINER */

.wiw-footer-container{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1400px;
  margin:auto;
  padding:0 40px 40px;
}

/* =========================
TOP
========================= */

.wiw-footer-top{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr 1fr;
  gap:60px;
  padding-bottom:60px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

/* =========================
BRAND
========================= */

.wiw-footer-brand img{
  width:220px;
  margin-bottom:28px;
}

.wiw-footer-brand p{
  color:rgba(255,255,255,.65);
  font-size:15px;
  line-height:1.9;
  margin-bottom:30px;
}

/* SOCIAL */

.wiw-footer-social{
  display:flex;
  gap:14px;
}

.wiw-footer-social a{
  width:44px;
  height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  color:#fff;
  text-decoration:none;
  transition:.35s ease;
}

.wiw-footer-social a:hover{
  background:var(--gold);
  color:#000;
  transform:translateY(-4px);
}

/* =========================
HEADINGS
========================= */

.wiw-footer-links h4,
.wiw-footer-contact h4{
  color:#fff;
  font-size:20px;
  margin-bottom:30px;
  font-weight:700;
}

/* =========================
LINKS
========================= */

.wiw-footer-links ul{
  list-style:none;
  padding:0;
  margin:0;
}

.wiw-footer-links ul li{
  margin-bottom:16px;
}

.wiw-footer-links ul li a{
  color:rgba(255,255,255,.65);
  text-decoration:none;
  transition:.3s ease;
  position:relative;
  padding-left:18px;
  font-size:15px;
}

.wiw-footer-links ul li a::before{
  content:'›';
  position:absolute;
  left:0;
  top:0;
  color:var(--gold);
}

.wiw-footer-links ul li a:hover{
  color:#fff;
  padding-left:24px;
}

/* =========================
CONTACT
========================= */

.wiw-footer-contact-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:22px;
}

.wiw-footer-contact-item i{
  color:var(--gold);
  margin-top:5px;
}

.wiw-footer-contact-item span{
  color:rgba(255,255,255,.7);
  font-size:15px;
  line-height:1.8;
}

/* =========================
NEWSLETTER
========================= */

.wiw-footer-newsletter{
  margin-top:34px;
}

.wiw-footer-newsletter input{
  width:100%;
  height:58px;
  background:#1b1b1b;
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  padding:0 20px;
  color:#fff;
  font-size:14px;
  margin-bottom:16px;
  outline:none;
}

.wiw-footer-newsletter input:focus{
  border-color:rgba(212,175,55,.35);
}

.wiw-footer-newsletter button{
  height:52px;
  padding:0 28px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,var(--gold),#b8860b);
  color:#000;
  font-weight:700;
  cursor:pointer;
  transition:.35s ease;
}

.wiw-footer-newsletter button:hover{
  transform:translateY(-3px);
}

/* =========================
BOTTOM
========================= */

.wiw-footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:28px;
}

.wiw-footer-bottom p{
  color:rgba(255,255,255,.55);
  font-size:14px;
}

.wiw-footer-bottom span{
  color:var(--gold);
}

/* =========================
TABLET
========================= */

@media(max-width:1100px){

  .wiw-footer-top{
    grid-template-columns:1fr 1fr;
    gap:50px;
  }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

  .wiw-footer{
    padding-top:90px;
  }

  .wiw-footer-shape{
    height:90px;
  }

  .wiw-footer-container{
    padding:0 22px 30px;
  }

  .wiw-footer-top{
    grid-template-columns:1fr;
    gap:40px;
    padding-bottom:40px;
  }

  .wiw-footer-brand img{
    width:180px;
  }

  .wiw-footer-bottom{
    flex-direction:column;
    gap:12px;
    text-align:center;
  }

}

.recommeded-link{
  text-decoration: none;
  color: inherit;
}

.recommeded-link:hover{
  text-decoration:none;
}