:root {
    --blue: #062b61;
    --navy: #041a3a;
    --gold: #ffc226;
    --dark: #020b18;
    --text: #081832;
    --muted: #5f6c80;
    --white: #fff
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #f5f8fc;
    overflow-x: hidden
}

.container {
    width: min(1180px, 92%);
    margin: auto
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, #031733, #07316b);
    box-shadow: 0 8px 30px #0004
}

.nav-wrap {
    height: 84px;
    width: min(1240px, 94%);
    margin: auto;
    display: flex;
    align-items: center;
    gap: 28px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1
}

.brand img {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 8px
}

.brand small {
    color: var(--gold);
    letter-spacing: 1px
}

nav {
    margin-left: auto;
    display: flex;
    gap: 26px
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    position: relative
}

nav a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: .3s
}

nav a:hover:after {
    width: 100%
}

.call {
    background: var(--gold);
    color: #061a36;
    text-decoration: none;
    padding: 13px 18px;
    border-radius: 30px;
    font-weight: 900
}

.menu {
    display: none;
    background: var(--gold);
    border: 0;
    padding: 10px 12px;
    border-radius: 8px
}

.hero {
    height: 680px;
    position: relative;
    background: #000;
    overflow: hidden
}

.slide {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, #020b18 0%, #061326cc 45%, #06132633), var(--bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: .8s
}

.slide.active {
    opacity: 1
}

.hero-content {
    width: min(620px, 86%);
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    animation: fadeUp .8s
}

.hero-content span {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 25px;
    background: #001b3faa
}

.hero h1 {
    font-size: 78px;
    line-height: .98;
    text-transform: uppercase;
    margin-bottom: 25px
}

.hero h1 b {
    color: var(--gold)
}

.hero p {
    font-size: 25px;
    margin-bottom: 35px
}

.btn {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    background: var(--gold);
    color: #061a36;
    text-decoration: none;
    border: 0;
    padding: 18px 28px;
    border-radius: 10px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 12px 25px #ffc22633
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #001b3c99;
    color: #fff;
    font-size: 25px;
    cursor: pointer
}

.hero-arrow.left {
    left: 28px
}

.hero-arrow.right {
    right: 28px
}

.dots {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px
}

.dots button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 0;
    background: #fff9
}

.dots button.active {
    background: var(--gold)
}

.run-text {
    background: var(--gold);
    color: #061a36;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
    padding: 13px 0
}

.run-text div {
    display: inline-flex;
    gap: 60px;
    animation: marquee 22s linear infinite
}

.trust-card {
    margin-top: -35px;
    position: relative;
    z-index: 2;
    background: #082e66;
    color: #fff;
    border: 2px solid var(--gold);
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    box-shadow: 0 22px 45px #061a3633;
    overflow: hidden
}

.trust-card div {
    padding: 28px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 15px;
    border-right: 1px solid #ffffff24
}

.trust-card i {
    grid-row: span 2;
    color: var(--gold);
    font-size: 35px
}

.trust-card b {
    text-transform: uppercase;
    font-size: 18px
}

.trust-card small {
    color: #d6e4fa
}

.section {
    padding: 72px 0
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 38px;
    text-align: center
}

.title span {
    width: 90px;
    height: 3px;
    background: var(--gold)
}

.title h2 {
    text-transform: uppercase;
    font-size: 34px;
    color: #061a36
}

.left-title {
    justify-content: flex-start
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px
}

.category-grid article,
.product {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px #0b24421a;
    border-bottom: 5px solid var(--gold);
    transition: .35s
}

.category-grid article:hover,
.product:hover {
    transform: translateY(-8px)
}

.category-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover
}

.category-grid h3 {
    background: #082e66;
    color: #fff;
    text-align: center;
    padding: 16px 8px;
    font-size: 13px;
    text-transform: uppercase
}

.light {
    background: #eef4fb
}

.product-slider {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px
}

.product img {
    width: 100%;
    height: 165px;
    object-fit: cover
}

.product h3 {
    font-size: 15px;
    padding: 15px 14px 5px
}

.product p {
    font-weight: 900;
    padding: 0 14px;
    color: #082e66
}

.product small {
    display: block;
    padding: 10px 14px 18px;
    color: #f5a400
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.promo {
    min-height: 210px;
    border-radius: 16px;
    padding: 30px;
    color: #fff;
    background-image: linear-gradient(90deg, #061a36ee, #061a3670), var(--bg);
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 30px #001b3f22
}

.promo h3 {
    text-transform: uppercase;
    font-size: 22px
}

.promo h2 {
    font-size: 30px;
    color: var(--gold);
    margin: 8px 0 22px
}

.promo a {
    background: var(--gold);
    color: #061a36;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 900
}

.about {
    background: #061a36;
    color: #fff
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center
}

.about-img img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 18px;
    border: 6px solid var(--gold)
}

.about .title h2 {
    color: #fff
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #dbe8fb;
    margin-bottom: 16px
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px
}

.badges span {
    border: 1px solid var(--gold);
    padding: 12px 15px;
    border-radius: 30px;
    color: var(--gold);
    font-weight: 800
}

.why {
    background: #fff
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px
}

.why-grid article {
    padding: 35px;
    background: linear-gradient(145deg, #fff, #eef5ff);
    border-radius: 20px;
    box-shadow: 0 18px 35px #0a2b5d18;
    border: 1px solid #e1eaf5;
    border-bottom: 5px solid var(--gold);
    transition: .3s
}

.why-grid article:hover {
    transform: translateY(-8px);
    background: #082e66;
    color: #fff
}

.why-grid i {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    background: #082e66;
    color: var(--gold);
    border-radius: 20px;
    font-size: 30px;
    margin-bottom: 20px
}

.why-grid article:hover i {
    background: var(--gold);
    color: #082e66
}

.why-grid h3 {
    text-transform: uppercase;
    margin-bottom: 12px
}

.why-grid p {
    color: #65738a;
    line-height: 1.6
}

.why-grid article:hover p {
    color: #dce9fb
}

.counter {
    background: linear-gradient(90deg, #041a3a, #07316b);
    padding: 45px 0;
    color: #fff
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center
}

.counter-grid div {
    border-right: 1px solid #ffffff24
}

.counter-grid i {
    display: block;
    color: var(--gold);
    font-size: 34px;
    margin-bottom: 10px
}

.counter-grid b {
    display: block;
    font-size: 38px;
    color: var(--gold)
}

.counter-grid span {
    text-transform: uppercase;
    font-weight: 800
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}

.testimonials article {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 14px 35px #0a2b5d18
}

.testimonials p {
    line-height: 1.7;
    color: #4f5e75;
    margin-bottom: 18px
}

.testimonials h4 {
    font-size: 20px
}

.testimonials small {
    color: #f5a400
}

.brands {
    background: #fff
}

.brand-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px
}

.brand-row b {
    background: #fff;
    border: 1px solid #dde6f1;
    border-radius: 12px;
    box-shadow: 0 10px 22px #0a2b5d10;
    text-align: center;
    padding: 25px;
    font-size: 24px
}

/* ================================
 PREMIUM 3D VIDEO GALLERY
================================ */


.gallery-section{

padding:90px 7%;

background:
linear-gradient(
180deg,
#ffffff,
#f3f8ff
);

overflow:hidden;

}



.section-title{

text-align:center;

margin-bottom:60px;

}



.section-title span{

color:#ffc107;

font-weight:900;

text-transform:uppercase;

letter-spacing:2px;

}



.section-title h2{

font-size:42px;

color:#082450;

margin-top:12px;

}




.gallery-wrapper{

height:500px;

display:flex;

align-items:center;

justify-content:center;

position:relative;

}



.gallery-box{

width:100%;

height:100%;

perspective:1400px;

display:flex;

justify-content:center;

align-items:center;

}




.gallery-carousel{

width:320px;

height:270px;

position:relative;

transform-style:preserve-3d;

transition:.8s ease;

}



.gallery-carousel video{

position:absolute;

width:320px;

height:270px;

object-fit:cover;

border-radius:22px;

border:6px solid white;

box-shadow:

0 20px 50px rgba(8,36,80,.25);

cursor:pointer;

background:#000;

}



/* 10 VIDEOS POSITION */


.gallery-carousel video:nth-child(1){

transform:
rotateY(0deg)
translateZ(520px);

}


.gallery-carousel video:nth-child(2){

transform:
rotateY(36deg)
translateZ(520px);

}


.gallery-carousel video:nth-child(3){

transform:
rotateY(72deg)
translateZ(520px);

}


.gallery-carousel video:nth-child(4){

transform:
rotateY(108deg)
translateZ(520px);

}


.gallery-carousel video:nth-child(5){

transform:
rotateY(144deg)
translateZ(520px);

}


.gallery-carousel video:nth-child(6){

transform:
rotateY(180deg)
translateZ(520px);

}


.gallery-carousel video:nth-child(7){

transform:
rotateY(216deg)
translateZ(520px);

}


.gallery-carousel video:nth-child(8){

transform:
rotateY(252deg)
translateZ(520px);

}


.gallery-carousel video:nth-child(9){

transform:
rotateY(288deg)
translateZ(520px);

}


.gallery-carousel video:nth-child(10){

transform:
rotateY(324deg)
translateZ(520px);

}





/* BUTTON */


.gallery-btn{

position:absolute;

top:50%;

transform:translateY(-50%);

width:55px;

height:55px;

border-radius:50%;

border:none;

background:#082450;

color:white;

font-size:22px;

cursor:pointer;

z-index:20;

box-shadow:
0 10px 30px rgba(0,0,0,.2);

}



.gallery-btn:hover{

background:#ffc107;

color:#082450;

}



.gallery-btn.left{

left:2%;

}


.gallery-btn.right{

right:2%;

}






/* MOBILE */


@media(max-width:768px){


.gallery-section{

padding:60px 5%;

}



.section-title h2{

font-size:28px;

}



.gallery-wrapper{

height:350px;

}



.gallery-carousel,
.gallery-carousel video{

width:230px;

height:190px;

}




.gallery-carousel video:nth-child(1){

transform:
rotateY(0deg)
translateZ(320px);

}


.gallery-carousel video:nth-child(2){

transform:
rotateY(36deg)
translateZ(320px);

}


.gallery-carousel video:nth-child(3){

transform:
rotateY(72deg)
translateZ(320px);

}


.gallery-carousel video:nth-child(4){

transform:
rotateY(108deg)
translateZ(320px);

}


.gallery-carousel video:nth-child(5){

transform:
rotateY(144deg)
translateZ(320px);

}


.gallery-carousel video:nth-child(6){

transform:
rotateY(180deg)
translateZ(320px);

}


.gallery-carousel video:nth-child(7){

transform:
rotateY(216deg)
translateZ(320px);

}


.gallery-carousel video:nth-child(8){

transform:
rotateY(252deg)
translateZ(320px);

}


.gallery-carousel video:nth-child(9){

transform:
rotateY(288deg)
translateZ(320px);

}


.gallery-carousel video:nth-child(10){

transform:
rotateY(324deg)
translateZ(320px);

}



.gallery-btn{

width:40px;

height:40px;

font-size:16px;

}



}

/* contact */
.contact {
    background: #eef4fb
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

.contact p {
    font-size: 18px;
    line-height: 1.7;
    color: #59687e;
    margin-bottom: 22px
}

.contact li {
    list-style: none;
    margin: 18px 0;
    font-size: 18px;
    font-weight: 700
}

.contact i {
    color: var(--gold);
    background: #082e66;
    padding: 12px;
    border-radius: 50%;
    margin-right: 10px
}

form {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 16px 36px #0a2b5d18
}

input,
textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 15px;
    border: 1px solid #dce5f0;
    border-radius: 10px;
    font-size: 16px
}

textarea {
    height: 130px
}

footer {
    background: #041a3a;
    color: #fff;
    padding: 55px 0 18px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 35px
}

footer img {
    width: 95px;
    border-radius: 8px
}

footer p,
footer a {
    display: block;
    color: #cbd8ea;
    margin: 10px 0;
    text-decoration: none
}

footer h3 {
    color: var(--gold);
    margin-bottom: 15px
}

footer button {
    background: var(--gold);
    border: 0;
    padding: 13px 18px;
    border-radius: 8px;
    font-weight: 900
}

.copy {
    text-align: center;
    border-top: 1px solid #ffffff20;
    padding-top: 18px;
    margin-top: 35px
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(-40%)
    }

    to {
        opacity: 1;
        transform: translateY(-50%)
    }
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@media(max-width:1000px) {
    .menu {
        display: block;
        margin-left: auto
    }

    nav {
        position: absolute;
        top: 84px;
        left: 0;
        right: 0;
        background: #061a36;
        display: none;
        flex-direction: column;
        padding: 22px
    }

    .nav-open {
        display: flex
    }

    .call {
        display: none
    }

    .hero {
        height: 620px
    }

    .hero h1 {
        font-size: 56px
    }

    .trust-card,
    .category-grid,
    .product-slider,
    .why-grid,
    .testimonials,
    .brand-row,
    .gallery-grid,
    .counter-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .promo-grid,
    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .trust-card {
        margin-top: 0
    }

    .trust-card div {
        border-bottom: 1px solid #ffffff24
    }

    .category-grid img,
    .product img {
        height: 190px
    }
}

@media(max-width:600px) {
    .nav-wrap {
        height: 72px
    }

    .brand img {
        width: 58px;
        height: 58px
    }

    .brand span {
        font-size: 14px
    }

    .hero {
        height: 560px
    }

    .hero-content {
        left: 6%;
        width: 88%
    }

    .hero-content span {
        font-size: 14px
    }

    .hero h1 {
        font-size: 42px
    }

    .hero p {
        font-size: 18px
    }

    .hero-arrow {
        display: none
    }

    .trust-card,
    .category-grid,
    .product-slider,
    .why-grid,
    .testimonials,
    .brand-row,
    .gallery-grid,
    .counter-grid {
        grid-template-columns: 1fr
    }

    .promo {
        min-height: 180px
    }

    .title h2 {
        font-size: 26px
    }

    .title span {
        width: 50px
    }

    .about-img img {
        height: 280px
    }

    .section {
        padding: 50px 0
    }

    .counter-grid div {
        padding: 18px 0;
        border-bottom: 1px solid #ffffff24
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .run-text {
        font-size: 16px
    }
}


.why-dark {
  padding: 70px 6%;
  background:
    linear-gradient(135deg, rgba(1, 18, 45, .96), rgba(0, 45, 95, .88)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: 45px;
  align-items: center;
  color: #fff;
}

.why-img {
  border: 2px solid #f8b900;
  border-radius: 14px;
  overflow: hidden;
  transform: skewX(-6deg);
}

.why-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transform: skewX(6deg) scale(1.12);
}

.small-title {
  color: #f8b900;
  font-size: 22px;
  font-style: italic;
}

.why-content h2 {
  font-size: 42px;
  line-height: 1.15;
  margin: 10px 0 25px;
  text-transform: uppercase;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.why-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(248,185,0,.45);
  border-radius: 8px;
  padding: 25px 16px;
  text-align: center;
  transition: .35s;
}

.why-box:hover {
  transform: translateY(-8px);
  background: rgba(248,185,0,.15);
}

.why-box {
  font-size: 34px;
  color: #f8b900;
}

.why-box h4 {
  font-size: 15px;
  color: #fff;
  margin: 12px 0 8px;
  text-transform: uppercase;
}

.why-box p {
  font-size: 13px;
  color: #d8e2f0;
  line-height: 1.5;
}

@media(max-width: 900px) {
  .why-dark {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-content h2 {
    font-size: 30px;
  }
}


.map-contact-area {
  padding: 60px 6%;
  background:
    linear-gradient(rgba(2, 18, 48, .88), rgba(2, 18, 48, .9)),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.map-contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 30px;
  align-items: center;
}

.map-contact-info {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,193,7,.35);
  border-radius: 18px;
  padding: 30px;
}

.map-contact-info span {
  color: #ffc107;
  font-style: italic;
  font-size: 18px;
}

.map-contact-info h2 {
  color: #fff;
  font-size: 32px;
  margin: 8px 0 12px;
}

.map-contact-info p {
  color: #dce4f2;
  line-height: 1.6;
}

.map-info-list {
  margin-top: 18px;
}

.map-info-list p {
  margin: 10px 0;
  font-size: 16px;
}

.map-contact-frame {
  height: 330px;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid #ffc107;
  box-shadow: 0 20px 45px rgba(0,0,0,.3);
}

.map-contact-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .map-contact-area {
    padding: 45px 18px;
  }

  .map-contact-container {
    grid-template-columns: 1fr;
  }

  .map-contact-info {
    padding: 22px;
  }

  .map-contact-info h2 {
    font-size: 26px;
  }

  .map-contact-frame {
    height: 280px;
  }
}

.simple-brand-strip {
  padding: 55px 20px;
  background: #f4f7fb;
  text-align: center;
}

.strip-line {
  height: 2px;
  background: #082450;
  max-width: 900px;
  margin: 0 auto 28px;
}

.strip-title h2 {
  color: #082450;
  font-size: 32px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.strip-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  max-width: 900px;
  margin: auto;
}

.strip-brands span {
  background: #fff;
  border: 2px solid #ffc107;
  color: #082450;
  padding: 14px 34px;
  border-radius: 10px;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: .3s;
}

.strip-brands span:hover {
  background: #082450;
  color: #ffc107;
  transform: translateY(-6px);
}

.strip-line:last-child {
  margin-top: 30px;
  margin-bottom: 0;
}

@media(max-width:600px) {
  .strip-title h2 {
    font-size: 24px;
  }

  .strip-brands {
    gap: 12px;
  }

  .strip-brands span {
    font-size: 18px;
    padding: 12px 22px;
  }
}

.touch-section{

position:relative;

padding:80px 20px;

background:
linear-gradient(rgba(2,20,50,.88),rgba(2,20,50,.88)),
url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=2000&q=80");

background-size:cover;

background-position:center;

background-attachment:fixed;

text-align:center;

overflow:hidden;

}

.touch-overlay{

position:absolute;

inset:0;

background:linear-gradient(135deg,#00183e88,#002b7088);

}

.touch-container{

position:relative;

z-index:2;

max-width:900px;

margin:auto;

}

.touch-small{

display:inline-block;

padding:8px 18px;

border:1px solid #ffc107;

border-radius:30px;

color:#ffc107;

margin-bottom:18px;

font-size:15px;

}

.touch-container h2{

font-size:46px;

color:#fff;

margin-bottom:18px;

font-weight:800;

}

.touch-container p{

font-size:18px;

line-height:1.8;

color:#d9d9d9;

max-width:700px;

margin:auto auto 40px;

}

.touch-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.touch-buttons a{

display:flex;

align-items:center;

gap:12px;

padding:16px 34px;

border-radius:50px;

font-size:18px;

font-weight:700;

text-decoration:none;

transition:.35s;

}

.call-btn{

background:#ffc107;

color:#082450;

}

.call-btn:hover{

background:#fff;

transform:translateY(-6px);

}

.whatsapp-btn{

background:#25D366;

color:#fff;

}

.whatsapp-btn:hover{

background:#1db954;

transform:translateY(-6px);

}

.visit-btn{

background:transparent;

border:2px solid #ffc107;

color:#fff;

}

.visit-btn:hover{

background:#ffc107;

color:#082450;

transform:translateY(-6px);

}

.touch-buttons i{

font-size:22px;

}

@media(max-width:768px){

.touch-section{

padding:60px 18px;

}

.touch-container h2{

font-size:30px;

}

.touch-container p{

font-size:16px;

}

.touch-buttons{

flex-direction:column;

}

.touch-buttons a{

width:100%;

justify-content:center;

}

}

.premium-brand-wall{
    padding:80px 6%;
}

.premium-brand-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-bottom:60px;
}

.premium-brand-title span{
    width:70px;
    height:3px;
    background:#ffc107;
}

.premium-brand-title h2{
    color:#082450;
    font-size:36px;
    font-weight:800;
    text-transform:uppercase;
}

.premium-brand-list{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:22px;

    max-width:1200px;
    margin:auto;

}

.premium-brand-item{

    padding:18px 38px;

    font-size:30px;
    font-weight:900;
    letter-spacing:2px;

    color:#082450;

    position:relative;

    cursor:pointer;

    transition:.35s;

}

.premium-brand-item::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:6px;

    width:0;
    height:3px;

    background:#ffc107;

    transition:.35s;

    transform:translateX(-50%);

}

.premium-brand-item:hover{

    color:#ffc107;

    transform:translateY(-8px);

    text-shadow:0 8px 20px rgba(255,193,7,.35);

}

.premium-brand-item:hover::after{

    width:100%;

}

@media(max-width:768px){

.premium-brand-title h2{
font-size:26px;
}

.premium-brand-title span{
width:40px;
}

.premium-brand-list{
gap:14px;
}

.premium-brand-item{
font-size:22px;
padding:12px 18px;
}

}

/* ==========================================
   MINI PREMIUM DIVIDER
========================================== */

.mini-divider{
    max-width:1200px;
    margin:40px auto;
    padding:0 20px;
}

.mini-divider-line{
    width:100%;
    height:2px;
    background:linear-gradient(
        90deg,
        transparent,
        #f5b400,
        transparent
    );
}

.mini-divider-content{

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

    gap:28px;

    padding:18px 0;

}

.mini-item{

    display:flex;
    align-items:center;
    gap:12px;

    color:#082450;

    font-size:18px;
    font-weight:700;

    transition:.35s;

    cursor:pointer;

}

.mini-item i{

    width:42px;
    height:42px;

    border-radius:50%;

    background:#fff7dd;

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

    color:#f5b400;

    font-size:18px;

    border:1px solid rgba(245,180,0,.25);

    transition:.35s;

}

.mini-item:hover{

    color:#f5b400;

    transform:translateY(-4px);

}

.mini-item:hover i{

    background:#f5b400;

    color:#082450;

    transform:rotate(8deg) scale(1.08);

    box-shadow:0 8px 20px rgba(245,180,0,.35);

}

.mini-dot{

    width:8px;
    height:8px;

    border-radius:50%;

    background:#f5b400;

    box-shadow:
    0 0 8px rgba(245,180,0,.7),
    0 0 18px rgba(245,180,0,.3);

}

/* ==============================
   MOBILE
================================ */

@media(max-width:768px){

.mini-divider{

    margin:30px auto;
    padding:0 18px;

}

.mini-divider-content{

    flex-direction:column;

    gap:18px;

    padding:20px 0;

}

.mini-dot{

    display:none;

}

.mini-item{

    width:100%;
    justify-content:center;

    font-size:16px;

}

.mini-item i{

    width:38px;
    height:38px;

    font-size:16px;

}

}


/* ==========================================
   BEST MOBILE CATEGORY SWIPE
========================================== */

/* @media (max-width: 768px) {

  #category {
    overflow: hidden;
  }

  #category .category-grid {
    display: flex !important;
    grid-template-columns: none !important;

    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;

    padding: 8px 4px 18px;
    margin-inline: -4px;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 4px;
    -webkit-overflow-scrolling: touch;
  }

  #category .category-grid::-webkit-scrollbar {
    display: none;
  }

  #category .category-grid article {
    flex: 0 0 82%;
    min-width: 82%;

    scroll-snap-align: start;

    border-radius: 20px;
    overflow: hidden;

    background: #fff;
    border-bottom: 5px solid var(--gold);

    box-shadow: 0 14px 35px rgba(6, 26, 54, .18);
    transform: none !important;
  }

  #category .category-grid article:active {
    transform: scale(.98) !important;
  }

  #category .category-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  #category .category-grid h3 {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #082e66;
    color: #fff;

    padding: 14px 12px;
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
  }
}

@media (max-width: 420px) {
  #category .category-grid article {
    flex-basis: 86%;
    min-width: 86%;
  }

  #category .category-grid img {
    height: 190px;
  }
}

/* Hide arrows on Desktop */
.cat-arrow{
    display:none;
}

/* Mobile Only */
@media (max-width:768px){

.category-slider-wrapper{
    position:relative;
}

.cat-arrow{

    display:flex;

    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:42px;
    height:42px;

    border:none;
    border-radius:50%;

    background:#ffc107;
    color:#082450;

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

    font-size:24px;
    font-weight:900;

    z-index:20;

    cursor:pointer;
}

.cat-prev{
    left:8px;
}

.cat-next{
    right:8px;
}

#categorySlider{

    display:flex !important;

    overflow:hidden;

    scroll-behavior:smooth;

    gap:20px;

}

#categorySlider article{

    flex:0 0 100%;

    min-width:100%;

}

} */

/* Hide arrows on Desktop */

.product-arrow{
    display:none;
}

/* Mobile Slider */

@media(max-width:768px){

.product-slider-wrapper{
    position:relative;
}

.product-arrow{

    display:flex;

    position:absolute;

    top:50%;
    transform:translateY(-50%);

    width:42px;
    height:42px;

    border:none;
    border-radius:50%;

    background:#ffc107;
    color:#082450;

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

    font-size:24px;
    font-weight:900;

    cursor:pointer;

    z-index:20;
}

.product-prev{
    left:8px;
}

.product-next{
    right:8px;
}

#productSlider{

    display:flex !important;

    gap:20px;

    overflow:hidden;

    scroll-behavior:smooth;

}

#productSlider .product{

    flex:0 0 100%;

    min-width:100%;

}

#productSlider img{

    height:240px;
    object-fit:cover;

}

}


/* Hide arrows on desktop */

.gallery-arrow{
    display:none;
}

/* Mobile Gallery Slider */

@media(max-width:768px){

.gallery-slider-wrapper{
    position:relative;
}

.gallery-arrow{

    display:flex;

    position:absolute;

    top:50%;
    transform:translateY(-50%);

    width:42px;
    height:42px;

    border:none;
    border-radius:50%;

    background:#ffc107;
    color:#082450;

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

    font-size:24px;
    font-weight:900;

    cursor:pointer;

    z-index:20;
}

.gallery-prev{
    left:8px;
}

.gallery-next{
    right:8px;
}

#gallerySlider{

    display:flex !important;

    gap:20px;

    overflow:hidden;

    scroll-behavior:smooth;

}

#gallerySlider img{

    flex:0 0 100%;

    min-width:100%;

    height:260px;

    object-fit:cover;

    border-radius:18px;

}

}