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

:root {
  --color-primary: #111827;
  --color-secondary: #374151;
  --color-accent: #723434;
  --color-text: #111827;
  --color-text-light: #6b7280;
  --color-bg: #ffffff;
  --color-bg-alt: #dadbdc;
  --red: #723434;
  --dark: #000000;
  --header-height: 80px;
  --transition-speed: 0.3s;
  --spaccor-color: linear-gradient(135deg, #0f0f0f, #dd0000);
  --new: #723434;
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background: var(--color-bg-alt);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px;
}

/* header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-bg);
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
  transition: all var(--transition-speed) ease;
}

.header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */


.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  font-size: clamp(18px, 3vw, 22px);
  letter-spacing: -0.5px;
  z-index: 1001;
}

.brand-icon {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

/* Menu */

.menu-toggle {
  position: relative;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
}

.menu-line {
  width: 28px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.menu-toggle.active .menu-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .menu-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active .menu-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--dark);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.overlay-menu.active {
  opacity: 1;
  visibility: visible;
}

.overlay-nav {
  width: 100%;
  max-width: 600px;
  padding: clamp(40px, 8vw, 80px) clamp(20px, 4vw, 40px);
}

.menu-list {
  list-style: none;
  margin-bottom: clamp(40px, 8vw, 60px);
}

.menu-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.overlay-menu.active .menu-item {
  opacity: 1;
  transform: translateY(0);
}

.menu-link {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 24px);
  padding: clamp(16px, 3vw, 20px) 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-speed) ease;
}

.menu-link:hover {
  padding-left: 16px;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.menu-number {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Courier New', monospace;
}

.menu-text {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -1px;
}

.menu-footer {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.overlay-menu.active .menu-footer {
  opacity: 1;
  transform: translateY(0);
}

.social-links {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all var(--transition-speed) ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  stroke-width: 2;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contact-info {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.main-content {
  margin-top: var(--header-height);
}

/* Top & Bottom Navbar*/

body {
  margin: 0 0 55px 0;
}

.nav {
  position: fixed;
  z-index: 30;
  bottom: 0;
  width: 100%;
  height: 65px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  display: flex;
}

.nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  min-width: 50px;
  overflow: hidden;
  white-space: nowrap;
  font-family: sans-serif;
  font-size: 13px;
  color: #444444;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.1s ease-in-out;

}

.nav__link:hover {
  background-color: #eeeeee;
}

.nav__link--active {
  color: #7C877F;
}

.nav__icon {
  font-size: 14px;
}

.nav__icon img {
  width: 30px;
}

.nav__icon-1 {
  font-size: 14px;
  color: #fff;
}

.nav__text-1 {
  color: #fff;
}


/* Add a black background color to the top navigation */
.topnav {
  background-color: #fff;

  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #000000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  border-radius: 12px;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: none;
  border-radius: 12px;
  color: #723434;
}

@media screen and (min-width: 1024px) {
  .nav {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .topnav {
    display: none;
    /* Hide on mobile */
  }
}

/* Center Button */
.center-btn {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* Logo Wrapper (circle background like your design) */
.logo-wrapper {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #0f0f0f, #dd0000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border: 2px solid #fff;

}

/* Image inside */
.logo-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Text */
.center-btn span {
  display: block;
  font-size: 12px;
  margin-top: 6px;
  color: var(--red);
  font-weight: 600;
}

/* HERO */
.hero {
  top: 70px;
  margin: 10px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.hero img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}


.gall img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 5px;
}

.supplier img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 5px;
}

/* overlay */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* CONTENT */
.hero-content {
  position: absolute;
  bottom: 140px;
  left: 20px;
  color: white;
  max-width: 600px;
  z-index: 2;
  padding: 0, 10px, 10px;

}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px black;
}

.hero-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px black;
}

/* STATS */
.stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.stat {
  text-align: left;
}

.stat h3 {
  font-size: 20px;
}

.stat span {
  font-size: 12px;
  opacity: 0.8;
}

/* PRICE BADGE */
.price-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: #151414;
  color: #ffffff;
  padding: 15px;
  border-radius: 15px;
  text-align: center;
  font-size: 14px;
  z-index: 2;
  border: 1px solid #fff;
}

.offer-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: #fff;
  color: #000;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  z-index: 2;
}

.offer-badge img {
  width: 100%;
  height: 60px;
  object-fit: cover;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .hero img {
    height: 500px;
  }

  .hero-content {
    position: absolute;
    bottom: 100px;
    left: 20px;
    color: white;
    max-width: 600px;
    z-index: 2;
  }

  .hero-content h1 {
    font-size: 24px;
    text-align: left;
  }

  .hero-content p {
    font-size: 14px;
    text-align: left;
  }

  .stats {
    flex-wrap: wrap;
  }

  .gall img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 5px;
  }


}

/* Responsive */
@media screen and (max-width: 768px) {
  .hide {
    display: none;
    /* Hide on mobile */
  }
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .hide2 {
    display: none;
    /* Hide on mobile */
  }
}
/* Hero */



.action-btn {
  min-width: 140px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-speed) ease;
}

.action-btn.primary {
  background: linear-gradient(0deg, #0f0f0f, #dd0000);
  color: #ffffff;
}

.action-btn.primary:hover {
  background: linear-gradient(180deg, #0f0f0f, #dd0000);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 10, 10);
}

.action-btn.secondary {
  background: var(--color-bg-alt);
  color: var(--color-text);
  border: 1px solid #e5e7eb;
}

.action-btn.secondary:hover {
  background: #f3f4f6;
}

.features {
  padding: clamp(20px, 8vw, 100px) clamp(20px, 4vw, 40px);
  background: var(--color-bg-alt);
  border-radius: 12px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(24px, 4vw, 40px);
}

.gallery {
  margin: 0 auto;
  padding: clamp(20px, 8vw, 100px) clamp(20px, 4vw, 40px);
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(24px, 4vw, 40px);
}

.feature-box-empty {
  margin: 10px;
}

.feature-box-empty h1{
  font-size: 36px;
  font-weight: 700;
  color: #723434;
  font-weight: 500;
  text-align: left;
}

.feature-box-empty p{
  font-size: 18px;
  color: #723434;
  text-align: left;
}

.feature-box {
  background:linear-gradient(100deg, #0f0f0f, #dd0000);
  padding: clamp(28px, 5vw, 40px);
  border-radius: 12px;
  border: 1px solid ;
  transition: all var(--transition-speed) ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.feature-number {
  display: inline-block;
  width: 300px;
  height: 150px;
  background: var(--color-bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  font-family: 'Courier New', monospace;
}

.feature-number img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.feature-heading {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  color: var(--color-bg);
}

.feature-text {
  font-size: 15px;
  color: var(--color-bg);
  line-height: 1.6;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .feature-box-empty h1{
  font-size: 24px;
  color: #723434;
  font-weight: 500;
  text-align: left;
}

.feature-box-empty p{
  font-size: 14px;
  color: #723434;
  text-align: left;
}

  .menu-link {
    padding: 14px 0;
  }

  .menu-link:hover {
    padding-left: 12px;
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  .overlay-menu {
    display: none;
  }


}


/* =========================
   SPACCOR TRUST SECTION
========================= */

.spaccor-trust-section {
  padding: 30px 80px;
  margin-top: 80px;
}

.spaccor-trust-section .t-container {
  max-width: 100%;
  margin: auto;
  text-align: center;
}

.trust-title {
  font-size: 30px;
  font-weight: 500;
  color: #723434;
  margin-bottom: 8px;
  line-height: 1.2;
}

.trust-line {
  width: 140px;
  height: 5px;
  background: #dd0000;
  border-radius: 50px;
  margin: 0 auto 50px;
}

.trust-box {
  background: #fff;
  border-radius: 25px;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.trust-item {
  flex: 1;
  text-align: center;
}

.icon {
  font-size: 42px;
  color: #d79b2c;
  margin-bottom: 3px;
}

.icon img {
  width: 50px;
  color: #d79b2c;
}

.stars {
  font-size: 34px;
  color: #d79b2c;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.stars img{
  width: 50px;
}

.trust-item h3 {
  font-size: 18px;
  color: #723434;
  font-weight: 500;
  margin: 0;
}

.divider {
  width: 1px;
  height: 120px;
  background: #e5e7eb;
}

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

@media(max-width:768px) {

  .spaccor-trust-section {
    padding: 20px 20px;
  }

  .spaccor-trust-section .t-container {
    max-width: 100%;
    margin: auto;
    text-align: center;
  }

  .trust-title {
    font-size: 24px;
    font-weight: 500;
  }

  .trust-box {
    flex-direction: row;
    border-radius: 15px;
    padding: 10px 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  }

  .trust-line {
    width: 140px;
    height: 3px;
    background: #000000;
    border-radius: 50px;
    margin: 0 auto 50px;
  }

  .divider {
    width: 1px;
    height: 50px;
    background: #e5e7eb;
  }

  .trust-item h3 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #723434;
  }

  .icon,
  .stars {
    font-size: 16px;
  }

  .icon img {
    width: 30px;
    color: #d79b2c;
  }
}

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

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

.spaccor-title {
  font-size: 30px;
  font-weight: 500;
  color: #723434;
  margin-bottom: 8px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 20px;
}



.spaccor-title p{
  font-size: 18px;
  color: #723434;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 20px;
}

.spaccor-title-left {
  font-size: 30px;
  font-weight: 500;
  color: #723434;
  margin-bottom: 8px;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 30px;
}



.spaccor-title-left p{
  font-size: 18px;
  color: #723434;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 20px;
}

@media(max-width:768px) {
  .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.spaccor-title {
  font-size: 16px;
  font-weight: 500;
  color: #723434;
  margin-bottom: 8px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 20px;
}



.spaccor-title p{
  font-size: 12px;
  color: #723434;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 20px;
}

.spaccor-title-left {
  font-size: 16px;
  font-weight: 500;
  color: #723434;
  margin-bottom: 8px;
  line-height: 1.2;
  text-align: left;
}



.spaccor-title-left p{
  font-size: 12px;
  color: #723434;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 20px;
}

}

:root {
  --description-fade: rgba(5, 5, 5, 0.35);
  --gap: 10px;
  --radius: 8px;
}


.bento-grid {
  display: grid;
  /* A 5x5 grid ensures the 1:3:1 ratio stays perfectly square */
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: var(--gap);
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 1 / 1;
}

@media(max-width:768px){

  .bento-grid {
  display: grid;
  /* A 5x5 grid ensures the 1:3:1 ratio stays perfectly square */
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: var(--gap);
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
}



}
.item {
  background: var(--dark);
  background: transparent;
  border: 1px solid #222;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  border-radius: var(--radius);
}

.item .item-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  color: #fff;
}

.item .item-content img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.item .item-content .description {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 40px;
  background-color: var(--description-fade);
  padding: 4px;
  text-align: center;
}

/* Hover Effect */
.item:not(.selected):hover {
  transform: scale(1.08);
  z-index: 3;
  border-color: var(--light);
  color: var(--light);
  box-shadow: 0 3px 10px rgba(255, 255, 255, 0.5);
}

/* The 3x3 Center Hero */
.selected {
  grid-area: 3 / 3 / 5 / 5;
  color: var(--light);
  font-size: 1.5rem;
  border-color: transparent;
  z-index: 10;
}


*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
.container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: var(--muted);
    padding: 70px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #dd0000;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}

/*Progress Step*/

.process-section {
  background: #f6f6f6;
  padding: 50px 16px 60px;
  position: relative;
  overflow: hidden;
}

.process-wrap {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.process-main-title {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 36px;
}

.step-progress {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 40px;
  max-width: 100%;
}

.step-line {
  position: absolute;
  left: 5%;
  right: 5%;
  height: 3px;
  background: #ddd;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  border-radius: 10px;
}

.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ddd;
  color: #9c9c9c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.step-circle.active {
  background: #723434;
  color: #fff;
  box-shadow: 0 6px 18px rgba(230, 27, 35, 0.25);
}

.step-content h3 {
  font-size: 24px;
  color: #000000;
  margin: 0 0 12px;
  font-weight: 700;
}

.step-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  max-width: 420px;
  margin: 0 auto 34px;
}

.step-illustration {
  width: 100%;
  min-height: 260px;
  background: #ddd;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.illus-icon {
  font-size: 72px;
  margin-bottom: 14px;
}

.illus-img {
  width: 50px;
}

.illus-sub {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}

.step-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfcfcf;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #723434;
  transform: scale(1.15);
}

.process-cta {
  display: inline-block;
  width: 100%;
  max-width: 360px;
  background: #723434;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  padding: 18px 24px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 25px rgba(230, 27, 35, 0.25);
  transition: all 0.3s ease;
}

.process-cta:hover {
  transform: translateY(-2px);
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  right: 14px;
  top: 55%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.float-btn.whatsapp {
  color: #25D366;
}

.float-btn.call {
  color: #111;
}

/* Tablet/Desktop */
@media (min-width: 768px) {
  .process-wrap {
    max-width: 760px;
  }

  .process-main-title {
    font-size: 48px;
  }

  .step-content h3 {
    font-size: 24px;
  }

  .step-content p {
    font-size: 18px;
  }

  .step-illustration {
    min-height: 220px;
  }

  .illus-icon {
    font-size: 90px;
  }

  .step-circle {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .process-main-title {
    font-size: 26px;
  }

  .step-content h3 {
    font-size: 22px;
  }

  .step-content p {
    font-size: 15px;
  }

  .step-circle {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .step-illustration {
    min-height: 220px;
    border-radius: 18px;
  }

  .process-cta {
    font-size: 16px;
    padding: 16px 18px;
  }

  .floating-actions {
    right: 10px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 20px;
  }
}

/* Tab */

.recipe-section {
  background: #fff;
  border-radius: 12px;
  padding: 80px 20px;
  color: #000000;
}

.recipe-section .container {
  max-width: 1200px;
  margin: auto;
}

.recipe-title {
  text-align: center;
  font-size: 42px;
  color: #000000;
  margin-bottom: 30px;
  font-weight: 700;
}

/* Tabs */
.recipe-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab {
  background: #ddd;
  border: none;
  border-radius: 12px;
  color: var(--color-accent);
  font-size: 18px;
  cursor: pointer;
  padding-bottom: 8px;
  padding-top: 8px;
  padding-left: 8px;
  padding-right: 8px;
  position: relative;
}

.tab.active {
  color: #fff;
  background: var(--color-accent);
  
}

.tab.active::after {
  content: "";
  height: 2px;
  width: 100%;
  background: "";
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Grid */
.recipe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 200px;
}

/* Image */
.recipe-image img {
  width: 400px;
  max-width: 100%;
  margin-left: 100px;
}

/* Text */
.recipe-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Button */
.recipe-btn {
  display: inline-block;
  background: #dd0000;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.recipe-btn:hover {
  background: #ffca2c;
}

/* Responsive */
@media (max-width: 768px) {
  .recipe-title {
    font-size: 28px;
  }

  .recipe-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  /* Image */
.recipe-image img {
  width: 250px;
  max-width: 100%;
  margin: auto;
}

  .recipe-tabs {
    gap: 20px;
  }

  .tab {
    font-size: 16px;
  }

  .recipe-text p {
    font-size: 14px;
  }
}

/* Table*/
.comparison-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  color: rgb(0, 0, 0);
}

.comparison-table th,
.comparison-table td {
  padding: 0.5rem;
  background: #ddd;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.comparison-table th:first-child {
  border: 0;
  font-size: 14px;
}

.comparison-table th:nth-child(2n) {
  box-shadow: 0 0 2rem hsla(0, 0%, 0%, 0.15);
  font-size: 14px;
}

.comparison-table th:nth-child(2n),
.comparison-table td:nth-child(2n) {
  position: relative;
  background: #454343;
  color: rgb(255, 255, 255);
  font-size: 14px;

}

.comparison-table td:not(:first-child) {
  text-align: center;
  font-size: 12px;
}

@media (min-width: 48rem) {
  .comparison-table {
    font-size: 0.875rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
  }
}

@media (min-width: 60rem) {
  .comparison-table {
    font-size: 1rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1.5rem 2rem;
  }
}

@media only screen and (min-width: 600px) {
  #size11 {
    width: 200px;
  }
}


@media screen and (min-width: 1024px) {
  .comparison-table {
    font-size: 16px;
  }

  .comparison-table th,
  .comparison-table td {
    font-size: 16px;
  }

  .comparison-table th:first-child {
    font-size: 16px;
  }

  .comparison-table th:nth-child(2n) {
    font-size: 16px;
  }

  .comparison-table th:nth-child(2n),
  .comparison-table td:nth-child(2n) {
    font-size: 16px;

  }

  .comparison-table td:not(:first-child) {
    font-size: 16px;
  }

}

/* video */

/* Video/testimonial block */
.video-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 25px;
  border-radius: 12px;
  background: var(--spaccor-color);
  color: white;
  margin-top: 12px;
}

.video-card .thumb {
  width: 120px;
  height: 80px;
  border-radius: 8px;
  background: #dd0000;
  display: flex;
  align-items: center;
  justify-content: center
}

.video-card .info h4 {
  margin: 0 0 6px;
}

.info h4 {
  margin: 0 0 6px;
  font-size: 30px;
  font-weight: 700;
  text-align: left;

}

.video-card .info p {
  margin: 0;
  color: #cbd5e1;
  font-size: 18px
}
@media screen and (max-width:768px) {

  .video-card .thumb {
  width: 120px;
  height: 60px;
  border-radius: 8px;
  background: #dd0000;
  display: flex;
  align-items: center;
  justify-content: center
}

  .video-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  background: var(--spaccor-color);
  color: white;
  margin-top: 12px;
 }

  .video-card .info h4 {
  margin: 0 0 6px;
  }
  .info h4 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;

}

.video-card .info p {
  margin: 0;
  color: #cbd5e1;
  font-size: 12px
}

}

 /* ================= FEATURED VIDEO ================= */

    .test-container{
      width:100%;
      max-width:1400px;
      margin:auto;
      padding:0 20px;
    }

    .featured-video{
      padding:30px 0 20px;
    }

    .featured-box{
      position:relative;
      border-radius:40px;
      overflow:hidden;
      height:650px;
      box-shadow:0 25px 60px rgba(0,0,0,0.12);
    }

    .featured-box img{
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .featured-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(to top,rgba(0,0,0,0.7),rgba(0,0,0,0.1));
      display:flex;
      align-items:flex-end;
      padding:50px;
    }

    .featured-text h2{
      font-size:46px;
      color:#fff;
      margin-bottom:15px;
    }

    .featured-text p{
      color:#eee;
      font-size:18px;
      line-height:1.8;
      max-width:700px;
    }

    .play-button{
      position:absolute;
      top:50%;
      left:50%;
      transform:translate(-50%,-50%);
      width:120px;
      height:120px;
      border-radius:50%;
      background:rgba(255,255,255,0.2);
      backdrop-filter:blur(15px);
      border:2px solid rgba(255,255,255,0.5);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:40px;
      cursor:pointer;
      transition:.4s;
    }

    .play-button:hover{
      transform:translate(-50%,-50%) scale(1.08);
    }

    /* ================= TESTIMONIALS ================= */

    .testimonials-section{
      padding:10px 0 10px;
    }

    .section-title{
      text-align:center;
      margin-bottom:60px;
    }

    .section-title h2{
      font-size:20px;
      margin-bottom:5px;
      font-weight:700;
    }

    .section-title p{
      color:#000;
      font-size:16px;
      margin-bottom: 20px;
    }

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

    .testimonial-card{
      background:#fff;
      border-radius:19px;
      overflow:hidden;
      transition:.4s;
      margin: auto;
    }

    .testimonial-card:hover{
      transform:translateY(-10px);
    }

    .card-image{
      position:relative;
      overflow:hidden;
    }

    .card-image img{
      width:100%;
      height:220px;
      object-fit:cover;
      transition:.6s;
    }

    .testimonial-card:hover .card-image img{
      transform:scale(1.08);
    }

    .card-play{
      position:absolute;
      top:50%;
      left:50%;
      transform:translate(-50%,-50%);
      width:90px;
      height:90px;
      border-radius:50%;
      background:rgba(255,255,255,0.18);
      border:2px solid rgba(255,255,255,0.6);
      backdrop-filter:blur(10px);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:28px;
      cursor: pointer;
    }

    .card-content{
      padding:30px;
    }

    .card-content h3{
      font-size:20px;
    }

    .card-content span{
      color:#888;
      font-size:15px;
      display:block;
      margin-bottom:5px;
    }

    .card-content p{
      color:#555;
      line-height:1.9;
      font-size:14px;
    }

    /* ================= STATS ================= */

    .stats-section{
      padding:100px 0;
      background:#111;
      color:#fff;
    }

    .stats-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:30px;
      text-align:center;
    }

    .stat-box h2{
      font-size:58px;
      margin-bottom:10px;
    }

    .stat-box p{
      color:#bbb;
      font-size:17px;
    }

    

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

    .mobile-slider {
      display:none;
    }

    .swiper-pagination {
      margin-top:30px;
      position:relative !important;
    }

    /* ================= RESPONSIVE ================= */

    @media screen and (max-width:1024px){
      .hero-content h1{
        font-size:58px;
      }

      .section-title h2,
      .cta-box h2{
        font-size:46px;
      }
      

      
    }

    

    @media(max-width:991px){

      .hero-content h1{
        font-size:42px;
      }

      .hero-content p{
        font-size:16px;
      }

      .featured-box{
        height:450px;
      }

      .featured-text h2{
        font-size:32px;
      }

      .section-title h2,
      .cta-box h2{
        font-size:36px;
      }

      .testimonial-grid{
        display:none;
      }

      .mobile-slider{
        display:block;
      }

      .stats-grid{
        grid-template-columns:repeat(2,1fr);
        row-gap:50px;
      }

      .cta-box{
        padding:60px 30px;
      }
    }

    @media(max-width:768px){

      .testimonial-hero{
        padding:90px 0 60px;
      }

      .hero-content h1{
        font-size:34px;
      }

      .featured-box{
        height:360px;
        border-radius:25px;
      }

      .featured-overlay{
        padding:25px;
      }

      .play-button{
        width:90px;
        height:90px;
        font-size:28px;
      }

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

      .card-content{
        padding:20px;
      }

      .card-content h3{
        font-size:20px;
      }
    }


       /* ================= CTA ================= */

    .cta-section{
      padding:120px 0;
      background:#fff;
      text-align:center;
    }

    .cta-box{
      max-width:900px;
      margin:auto;
      padding:80px 50px;
      border-radius:40px;
      background:#111;
      color:#fff;
      box-shadow:0 25px 60px rgba(0,0,0,0.15);
    }

    .cta-box h2{
      font-size:56px;
      line-height:1.2;
      margin-bottom:25px;
    }

    .cta-box p{
      color:#ccc;
      line-height:1.8;
      margin-bottom:40px;
      font-size:18px;
    }

    .cta-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:18px 40px;
      background:#fff;
      color:#111;
      border-radius:60px;
      font-size:16px;
      font-weight:600;
      transition:.4s;
    }

    .cta-btn:hover{
      transform:translateY(-4px);
    }

    /*faq*/
    .faq-container {
      padding-left: 50px;
      padding-right: 50px;
      text-align: left;
    }
.faq-item {
  border-bottom: 1px solid #723434;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 16px;
  color: #723434;
  font-weight: 600;
  padding: 15px 0;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding-bottom: 14px;
  color: #000;
  font-size: 14px;
}

 @media(max-width:768px) {

  .faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 14px;
  color: #723434;
  font-weight: 600;
  padding: 15px 0;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding-bottom: 12px;
  color: #000;
  font-size: 14px;
}

 }