/* ===============================
   1. ROOT VARIABLES
=============================== */
:root{
    --accent1:#ff8c00;
    --accent2:#ffb84d;
    --bg:#222;
    --card:#111;
    --muted:#bdbdbd;
}
/* ===============================
   2. GLOBAL BASE
=============================== */
*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family: Inter, Arial, Segoe UI, Roboto, sans-serif;
    color:#fff;
    background: linear-gradient(
        180deg,
        #ffb347 0%,     
        #ff9f1c 35%,    
        #f08a00 65%,    
        #d97706 100%    
    );
}


.container{
    max-width:1200px;
    margin:0 auto;
    padding:0 16px;
}

/* Header & Menu Styles */
.header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 18px;
    border-bottom:10px solid var(--card);
}

.logo img{
    height:56px;
}

.menu a{
    color:#fff;
    text-decoration:none;
    margin:0 10px;
    font-weight:600;
}

.menu a.active,
.menu a:hover{
    color:var(--accent1);
}

.btn-fb {
    display: none; 
}

.facebook-icon {
    font-size: 30px; 
    color: #4267B2;
    text-decoration: none;
    line-height: 1; 
    transition: color 0.2s; 
    padding: 5px 0; 
}

.facebook-icon:hover {
    color: #365899; 
}
.btn-line{
    background:linear-gradient(90deg,var(--accent1),var(--accent2));
    color:#000;
    padding:8px 12px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
}

.btn{
    background:var(--accent1);
    color:#000;
    padding:10px 16px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    margin-right:10px;
}

.btn-outline{
    background:transparent;
    border:2px solid var(--accent1);
    color:var(--accent2);
    padding:8px 12px;
    border-radius:8px;
    text-decoration:none;
}

/* Hero Section Styles */
.hero{
    position:relative;
    overflow:hidden;
    background:#111;
}

.hero .hero-inner{
    padding:80px 16px;
}

.hero h1{
    font-size:40px;
    margin:0;
    color:var(--accent2);
}

.hero p{
    color:#ddd;
    max-width:700px;
}

.hero-cta{
    margin-top:18px;
}


/* General Section Styles */
.section{
    padding:36px 0;
}

.section-title{
    font-size:24px;
     color: var(--white);
	text-align: center;
	font-size: 2rem;
    margin:18px 0;
}

/* Product Grid Styles */
.grid-products{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
    gap:18px;
    padding:10px 0;
}

.product-card{
    position: relative;
    background: linear-gradient(180deg, #1a1a1a, #000);
    border-radius: 18px;
    padding: 16px;
    overflow: hidden;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.7),
        inset 0 0 0 1px rgba(255,255,255,0.03);

    transition: 0.35s ease;
}
.product-card::before{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius:20px;

    background: linear-gradient(
        120deg,
        transparent 20%,
        rgba(255,140,0,0.9),
        rgba(255,200,80,0.9),
        rgba(255,140,0,0.9),
        transparent 80%
    );

    background-size: 200% 200%;
    animation: glowMove 4s linear infinite;

    filter: blur(6px);
    opacity: 0.45;
    z-index: -1;
}
.product-card:hover{
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 0 25px rgba(255,140,0,0.55),
        0 20px 45px rgba(0,0,0,0.8);
}

.product-card:hover::before{
    opacity:0.75;
    filter: blur(8px);
}
.product-card img{
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:8px;
}
.card-title{
    font-size:16px;
    margin:10px 0;
}
.price {
    border-left: 4px solid #ffffff;
    padding-left: 12px;
}
.card-actions{
    display:flex;
    gap:8px;
    justify-content:center;
    margin-top:10px;
}

.product-detail .product-grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
    padding:40px 0;
}

.gallery img{
    width:100%;
    border-radius:10px;
}

.info h1{
    font-size:26px;
    margin:0 0 8px;
}

.sku {
    color: #ffffff;
    background: #000000;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 0.5px;
}


.buy-actions{
    display:flex;
    gap:12px;
    margin:18px 0;
}

/* Footer Styles */
.site-footer{
    background:#040404;
    padding:26px 0;
    border-top:4px solid var(--accent1);
    color:#bbb;
    text-align:center;
}

/* Animation */
.fade-in{
    opacity:0;
    transform:translateY(12px);
    animation:fadeIn .6s forwards;
}

@keyframes fadeIn{
    to{opacity:1;transform:none}
}

/* Media Queries */
@media(max-width:900px){
    .product-detail .product-grid-2{
        grid-template-columns:1fr;
    }
    .hero h1{
        font-size:28px;
    }
}

@media(max-width:700px){
    .menu{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
}

    .header{
        flex-direction:column;
        align-items:flex-start;
    }
}


.blog{
    height: auto;
	padding: 2rem 0;
}
.section{
    background: transparent;
}


.blog-title{
	text-align: center;
}


.blog-title h3 {
  color: var(--white);
	font-size: 2rem;
}

.blog-title p {
	color: #2A00FF;
	font-size: 1.2rem
}

.blog-post {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.5rem;  
  row-gap: 4rem;       
}


.blog-post img {
  width: 100%;
  height: 280px;     
  object-fit: cover; 
  border-radius: 6px;
  
} 
.blog-post h3 {
	color: var(--white);
}
.blog-post p {
 color: #211E1E;
line-height: 20px;	
	}
.post-item {
    background: linear-gradient(180deg, #1a1a1a, #000);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.social-icon {
    font-size: 30px; 
    text-decoration: none;
    line-height: 1; 
    transition: color 0.2s; 
    padding: 5px 0;
    margin-left: 10px; 
}
.facebook-icon {
    color: #4267B2; 
}
.facebook-icon:hover {
    color: #365899; 
}
.instagram-icon {

    color: #E1306C; 
}
.instagram-icon:hover {
    color: #C135A4; 
}
.messenger-icon {
    color: #0078FF; 
}
.messenger-icon:hover {
    color: #0060e6;
}
.line-icon {
    color: #00C300; 
}
.line-icon:hover {
    color: #00b000;
}
.thumbnails{
    display:flex;
    gap:10px;
    margin-top:12px;
}

.thumbnails img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:6px;
    cursor:pointer;
    opacity:0.7;
    border:2px solid transparent;
}

.thumbnails img:hover,
.thumbnails img.active{
    opacity:1;
    border-color:var(--accent1);
}
/* ===== Product Image Gallery ===== */
.thumbnails{
    display:flex;
    gap:10px;
    margin-top:12px;
}

.thumbnails img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:6px;
    cursor:pointer;
    opacity:0.6;
    border:2px solid transparent;
    transition:0.2s;
}

.thumbnails img:hover,
.thumbnails img.active{
    opacity:1;
    border-color:var(--accent1);
}
/* ===== Image Zoom ===== */
.gallery{
    overflow:hidden;
}

.detail-img{
    width:100%;
    border-radius:10px;
    transition:transform .4s ease;
}

.detail-img:hover{
    transform:scale(1.15);
    cursor:zoom-in;
}
/* ================================
   TOP BANNER IMAGE SLIDER
================================ */

.slider-container {
    position: relative;
    width: 100%;
    height: 509px;          
    overflow: hidden;
    background: #000;
}
.mySlides {
    display: none;
    width: 100%;
    height: 100%;
}
.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;    
}
.slider-dots {
    position: absolute;
    bottom: 12px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active,
.dot:hover {
    background-color: #ff8c00;
}
.fade {
    animation: fadeEffect 1.5s;
}

@keyframes fadeEffect {
    from { opacity: 0.4; }
    to   { opacity: 1; }
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .slider-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 220px;
    }
}
.footer-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.footer-brand img{
    height:50px;
    margin-bottom:8px;
}

.footer-brand p{
    font-size:14px;
    color:#aaa;
    margin:0;
}

.footer-social{
    display:flex;
    align-items:center;
}

/* Responsive footer */
@media(max-width:600px){
    .footer-inner{
        flex-direction:column;
        text-align:center;
    }
}
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.content {
  flex: 1;
}
.site-footer {
  background: #000;
  color: #fff;
  padding: 30px 0;
  margin-top: auto;
}
footer * {
  position: relative;
}
.detail-img {
  width: 100%;
  height: 420px;    
  object-fit: cover;  
  border-radius: 12px;
}
.thumbnails img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
}
.swap-img {
  transition: opacity 0.3s ease;
}
.featured-box::before{
    content:"";
    position:absolute;
    inset:-3px;
    border-radius:24px;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,140,0,0.9),
        rgba(255,200,80,0.9),
        rgba(255,140,0,0.9),
        transparent
    );
    background-size:200% 200%;
    animation: glowMove 6s linear infinite;
    filter: blur(10px);
    opacity:0.5;
    z-index:-1;
}

.featured-box{
    position: relative;
    background: linear-gradient(180deg, #141414, #000);
    padding: 40px 30px;
    border-radius: 22px;
    margin: 30px auto;
    border: 2px solid rgba(255,140,0,0.9);
    box-shadow:
        0 0 0 2px rgba(0,0,0,0.9),
        0 0 30px rgba(255,140,0,0.45),
        0 25px 50px rgba(0,0,0,0.7);
}

@keyframes glowMove{
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@media (max-width: 768px){
    .featured-box{
        padding: 25px 15px;
    }
}
@media (max-width:768px){
    .featured-box::before{
        filter: blur(6px);
        opacity:0.45;
    }
}
/* ===============================
   MOBILE RESPONSIVE
=============================== */
@media (max-width: 768px) {

  /* Header */
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .logo img {
    height: 46px;
  }

  .social-icons-group {
    margin-top: 10px;
  }

  /* Banner */
  .slider-container {
    height: 220px;
  }

  /* Product grid */
  .grid-products {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-card img {
    height: 200px;
  }

  /* Blog */
  .blog-post {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }

  .blog-post img {
    height: 220px;
  }

  /* Titles */
  .section-title,
  .blog-title h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {

  .slider-container {
    height: 180px;
  }

  .product-card {
    padding: 14px;
  }

  .price {
    font-size: 1.1rem;
  }
}
.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

/* ?????? */
@media(max-width:700px){

    .menu-toggle{
        display:block;
    }

    .menu{
        display:none;
        width:100%;
        flex-direction:column;
        background:#111;
        padding:10px 0;
        margin-top:10px;
        border-radius:12px;
    }

    .menu a{
        padding:12px;
        display:block;
        text-align:center;
        border-bottom:1px solid rgba(255,255,255,0.1);
    }

    .menu.show{
        display:flex;
    }
}
/* ===============================
   BUY ACTION BUTTONS (OVERRIDE)
=============================== */

/* ???? LINE – ??????? */
.btn-primary{
    background:#00C300;              /* LINE Green */
    color:#ffffff;
    font-size:16px;
    font-weight:700;
    padding:12px 22px;
    border-radius:10px;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    box-shadow:0 8px 18px rgba(0,195,0,0.45);
    transition:all .25s ease;
}

.btn-primary:hover{
    background:#00a800;
    transform:translateY(-2px);
    box-shadow:0 12px 26px rgba(0,195,0,0.6);
}

/* ??????? – ??????????????? */
.btn-outline{
    background:transparent;
    color:#ffffff;
    border:2px solid rgba(255,255,255,0.7);
    font-size:15px;
    padding:11px 20px;
    border-radius:10px;
    text-decoration:none;
    transition:all .25s ease;
}

.btn-outline:hover{
    background:rgba(255,255,255,0.15);
}
/* ===============================
   TEXT VISIBILITY FIX (OVERRIDE)
=============================== */

/* ?????? section / blog */
.section-title,
.blog-title h3{
    color:#ffffff;
    font-weight:700;
    text-shadow:0 2px 6px rgba(0,0,0,0.35);
}

/* subtitle ????????? (?????????????????) */
.blog-title p{
    color:#fff3d6; /* ???????? ???????????????? */
}

/* ????????? */
.blog-post h3,
.blog-post h4{
    color:#ffffff;
}

/* ????????????????? */
.blog-post p{
    color:#e6e6e6;
    line-height:1.5;
}
/* ===============================
   CENTER TEXT INSIDE BLOG CARD
=============================== */

.post-item{
    text-align: center;
}

.post-item h3,
.post-item h4{
    text-align: center;
    margin: 16px 0 8px;
}

.post-item p{
    text-align: center;
    margin: 0 auto 18px;
    max-width: 90%;
}
.social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 8px;
}


.icon-shopee {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("../images/Shopee.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.review-section {
 background: linear-gradient(180deg, #0b0b0b, #151515);
 padding: 60px 20px;
}
.review-divider{
  height: 90px;
  background: linear-gradient(
    to bottom,
    #0f1115,
    #0b0b0b
  );
}


.section-title,
.section-subtitle {
  color: #fff;
  text-align: center;
}

.review-slider {
  max-width: 1200px;
  margin: 40px auto 0;
  overflow: hidden;
  position: relative;
}.review-card {
  min-width: 300px;
  background: #1e1e1e;
  color: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

/* ? ??? SVG */
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}

.star {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

.star.full {
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f5b301'>\
<path d='M12 .587l3.668 7.568 8.332 1.151-6.064 5.797 1.516 8.23L12 18.896l-7.452 4.437 1.516-8.23L0 9.306l8.332-1.151z'/>\
</svg>");
}

.star.half {
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<defs><linearGradient id='g'><stop offset='50%' stop-color='%23f5b301'/><stop offset='50%' stop-color='%23ccc'/></linearGradient></defs>\
<path fill='url(%23g)' d='M12 .587l3.668 7.568 8.332 1.151-6.064 5.797 1.516 8.23L12 18.896l-7.452 4.437 1.516-8.23L0 9.306l8.332-1.151z'/>\
</svg>");
}

.review-text { line-height: 1.6; margin-bottom: 12px; }
.review-name { opacity: .85; }


.google-map-box {
  text-align: center;
  margin-top: 50px;
}

.google-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: #1e1e1e;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.google-map-btn:hover {
  background: #000;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}

/* ??? ????? Google Maps (SVG) */
.map-icon {
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path fill='%23ea4335' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7z'/>\
<circle cx='12' cy='9' r='3' fill='%23fff'/>\
</svg>");
}
.review-form-section {
  max-width: 520px;
  margin: 60px auto;
  padding: 40px 30px;
  background: #1e1e1e;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,.4);
}

.form-title {
  color: #ffa726;
  text-align: center;
  margin-bottom: 5px;
}

.form-subtitle {
  color: #ccc;
  text-align: center;
  margin-bottom: 30px;
  font-size: 14px;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 15px;
}

.review-form textarea {
  min-height: 110px;
  resize: vertical;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  outline: none;
  border-color: #ffa726;
}

.review-form button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #ff9800, #ff6f00);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

.review-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,.45);
}
/* ===== ??????????? ===== */

.section-title {
  text-align: center;
  color: #fff;
  margin-bottom: 25px;
}
/* ===== ???????????????????? ===== */
.review-slider{
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow: hidden;   /* ???????? */
  width: 100%;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}

.star {
  width: 18px;
  height: 18px;
  fill: gold;
}

.review-name {
  margin-top: 10px;
  font-weight: bold;
  color: #ff9800;
}

.map-btn {
  display: inline-block;
  margin-top: 12px;
  background: #ff9800;
  color: #000;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
}
.map-fixed-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;

  background: #ff9800;
  color: #000;
  padding: 10px 16px;
  border-radius: 999px;

  font-weight: 600;
  font-size: 14px;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.map-fixed-btn:hover {
  background: #ffa726;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .map-fixed-btn {
    top: auto;
    bottom: 20px;
    right: 20px;
    font-size: 13px;
  }
}
.review-slider::-webkit-scrollbar{
  display: none; /* Chrome */
}
.review-section{
  position: relative;
}

.review-section::before,
.review-section::after{
  content:"";
  position:absolute;
  top:0;
  width:60px;
  height:100%;
  pointer-events:none;
  z-index:2;
}

.review-section::before{
  left:0;
  background: linear-gradient(to right, #2b2f36, transparent);
}

.review-section::after{
  right:0;
  background: linear-gradient(to left, #2b2f36, transparent);
}
.review-slider::-webkit-scrollbar{
  display: none;
}
/* ===== ???????????????? ===== */
.review-track{
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviewScroll 30s linear infinite;
}

/* ???????????????? */
.review-slider:hover .review-track{
  animation-play-state: paused;
}

/* ?????????????? (????????????????) */
.review-card{
  min-width: 320px;
  flex-shrink: 0;
  background: #2b2f36;
  padding: 20px;
  border-radius: 14px;
  color: #fff;
}

/* ===== animation ===== */
@keyframes reviewScroll{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}
.review-slider{
  overflow: hidden;
  width: 100%;
}

.review-track{
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviewScroll 30s linear infinite;
}

.review-slider:hover .review-track{
  animation-play-state: paused;
}

.review-card{
  min-width: 320px;
  flex-shrink: 0;
  background: #2b2f36;
  padding: 20px;
  border-radius: 14px;
  color: #fff;
}

@keyframes reviewScroll{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}
/* ===== ?????????????????????? ===== */

.review-slider{
  overflow: hidden;
  width: 100%;
}

.review-track{
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviewScroll 35s linear infinite;
}

.review-slider:hover .review-track{
  animation-play-state: paused;
}

.review-card{
  min-width: 320px;
  flex-shrink: 0;
  background: #2b2f36; /* ??????? ??? ?? */
  padding: 20px;
  border-radius: 14px;
  color: #fff;
}

@keyframes reviewScroll{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}
/* ===============================
   PREMIUM PAGE (CONTACT / HOW TO)
=============================== */

.page-hero {
  background: linear-gradient(135deg, #ff8c1a, #ff6f00);
  padding: 80px 20px 100px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.95;
}

/* Card ?????? */
.premium-card {
  max-width: 900px;
  margin: -60px auto 0;
  background: #fff;
  color: #111;
  border-radius: 22px;
  padding: 45px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

/* CONTACT */
.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #eee;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8c1a, #ff6f00);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-text strong {
  display: block;
  font-size: 20px;
  color: #ff7a00;
}

.contact-text span {
  font-size: 15px;
  color: #555;
}

/* STEP */
.step-item {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
}

.step-badge {
  min-width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #ff8c1a, #ff6f00);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-text {
  font-size: 18px;
  font-weight: 600;
}

/* BUTTON */
.premium-btn {
  display: inline-block;
  margin-top: 35px;
  padding: 14px 34px;
  background: linear-gradient(90deg, #ff9800, #ff6f00);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: .25s;
}

.premium-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
