*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Poppins,sans-serif;
    transition:0.3s;
}
body{
    background:#0b0b0b;
    color:#eaeaea;
}
a{color:#d4af37;text-decoration:none;}
header{
    background:#000;
    padding:18px 50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #222;
}
.logo{
    font-size:28px;
    font-weight:700;
    color:#d4af37;
}
nav a{margin-left:25px;font-weight:500;}
nav a:hover{color:#fff;}
.hero{
    height:90vh;
    background:linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.9)),url("../images/hero.jpg") center/cover;
    display:flex;
    align-items:center;
    padding:60px;
}
.hero h1{font-size:52px;color:#d4af37;}
.hero p{margin:20px 0;font-size:18px;}
.btn{
    padding:12px 28px;
    background:#d4af37;
    border:none;
    color:#000;
    font-weight:600;
    margin-right:15px;
    cursor:pointer;
}
.btn:hover{background:#fff;}
.section{padding:70px 50px;}
.section h2{color:#d4af37;margin-bottom:25px;}
.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}
.product-card{
    background:#111;
    padding:20px;
    border:1px solid #222;
}
.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 30px rgba(212,175,55,.4);
}
.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}
.product-card h3{margin:15px 0 8px;}

input,textarea,select{
    width:100%;
    background:#111;
    border:1px solid #333;
    padding:12px;
    color:#fff;
    margin-bottom:15px;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 38px;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #d4af37;
}

.quote-btn {
    background: #d4af37;
    color: #000;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
}
.quote-btn:hover {
    background: #fff;
}
.why-choose {
    text-align: center;
}

.subtitle {
    color: #aaa;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.why-card {
    background: #0f0f0f;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #222;
}

.why-card img {
    height: 50px;
    margin-bottom: 20px;
}

.why-card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.why-card p {
    color: #aaa;
    font-size: 14px;
}
.get-touch {
    text-align: center;
}

.touch-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.touch-card {
    background: #0f0f0f;
    padding: 35px;
    width: 320px;
    border-radius: 14px;
    border: 1px solid #222;
}

.touch-card img {
    height: 45px;
    margin-bottom: 20px;
}

.touch-card h3 {
    margin-bottom: 10px;
}

.touch-card p {
    color: #aaa;
    margin-bottom: 12px;
}

.touch-card span {
    color: #d4af37;
    font-weight: 600;
}
/* =========================
   PREMIUM HERO SECTION
========================= */

.hero-premium {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.85) 0%,
            rgba(0,0,0,0.65) 40%,
            rgba(0,0,0,0.2) 100%
        ),
        url("../images/hero.jpg") center right / cover no-repeat;
    padding: 0 80px;
}

.hero-inner {
    max-width: 900px;
}

.hero-premium h1 {
    font-size: 64px;
    font-weight: 700;
    color: #d4af37;
    line-height: 1.15;
    margin-bottom: 22px;
}

.hero-premium p {
    font-size: 20px;
    color: #d0d0d0;
    max-width: 650px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.hero-btn {
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
}

.hero-btn.primary {
    background: #d4af37;
    color: #000;
}

.hero-btn.primary:hover {
    background: #ffffff;
}

.hero-btn.outline {
    border: 2px solid #d4af37;
    color: #d4af37;
    background: transparent;
}

.hero-btn.outline:hover {
    background: #d4af37;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-premium {
        padding: 0 30px;
        text-align: left;
    }

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

    .hero-premium p {
        font-size: 16px;
    }
}
/* =========================
   PREMIUM FOOTER
========================= */

.premium-footer {
    background: linear-gradient(180deg, #0b0b0b, #0f1115);
    padding: 60px 80px 40px;
    color: #9ca3af;
    font-size: 14px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand h3 {
    color: #d4af37;
    font-size: 26px;
    margin-bottom: 8px;
}

.footer-brand p {
    color: #6b7280;
}

.footer-social {
    display: flex;
    gap: 22px;
}

.footer-social img {
    width: 22px;
    opacity: 0.7;
}

.footer-social img:hover {
    opacity: 1;
}

.footer-divider {
    height: 1px;
    background: #1f2933;
    margin: 35px 0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 8px;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
    .premium-footer {
        padding: 40px 30px;
    }

    .footer-top {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
}
/* =========================
   PRODUCT CATEGORY PAGE
========================= */

.page-title {
    color: #d4af37;
    margin-bottom: 30px;
    text-align: center;
}

.category-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.category-bar button {
    background: #111;
    border: 1px solid #333;
    color: #d4af37;
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
}

.category-bar button:hover {
    background: #d4af37;
    color: #000;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.product-item {
    background: #0f0f0f;
    border: 1px solid #222;
    padding: 22px;
    border-radius: 12px;
    text-align: left;
}

.product-item h3 {
    color: #fff;
    margin-bottom: 10px;
}

.product-item ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.product-item ul li {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 6px;
}

.product-item .price {
    color: #d4af37;
    font-weight: 600;
}
/* =========================
   PRODUCT IMAGE CARDS
========================= */

.product-item {
    background: linear-gradient(180deg, #0e0e0e, #141414);
    border: 1px solid #222;
    padding: 24px;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 35px rgba(212,175,55,0.15);
}

.product-img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.product-img img {
    max-height: 130px;
    max-width: 100%;
    object-fit: contain;
}

.product-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.product-item .size {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 6px;
}

.product-item .price {
    color: #d4af37;
    font-weight: 700;
    font-size: 16px;
}

/* =========================
   ABOUT PAGE ANIMATIONS ONLY
========================= */

.about-title {
  opacity: 0;
  transform: translateY(30px);
  animation: aboutFadeUp 0.9s ease forwards;
}

.about-text {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
}

.about-text.active {
  opacity: 1;
  transform: translateY(0);
}

.about-footer-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.about-footer-text.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes aboutFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================
   HOME HERO IMAGE LAYOUT
========================= */

.hero-premium {
    min-height: 92vh;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.75) 45%,
        rgba(0,0,0,0.55) 100%
    );
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.hero-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
}

/* LEFT */
.hero-left h1 {
    font-size: 64px;
    line-height: 1.1;
    color: #fff;
}

.hero-left h1 span {
    color: #d4af37;
}

.hero-left p {
    font-size: 18px;
    color: #cfcfcf;
    margin: 24px 0 36px;
    max-width: 520px;
}

.hero-tag {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #d4af37;
    border-radius: 20px;
    color: #d4af37;
    font-size: 13px;
    margin-bottom: 18px;
}

/* RIGHT IMAGE */
.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-right img {
    width: 100%;
    max-width: 480px;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-right {
        justify-content: center;
        margin-top: 40px;
    }

    .hero-left h1 {
        font-size: 48px;
    }
}

@media (max-width: 600px) {
    .hero-premium {
        padding: 0 24px;
    }

    .hero-left h1 {
        font-size: 36px;
    }
}
/* =========================
   HERO TRANSPARENT OVERLAY
========================= */

.hero-left {
    position: relative;
    z-index: 2;
}

/* Transparent background image – FULL DESKTOP SIZE */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 120%;
    object-fit: cover;      /* makes image cover full area */
    opacity: 0.20;          /* must be between 0 and 1 */
    z-index: 0;
    pointer-events: none;
}


/* Responsive control */
@media (max-width: 1024px) {
    .hero-overlay {
        width: 300px;
        left: -50px;
        top: -20px;
    }
}

@media (max-width: 600px) {
    .hero-overlay {
        display: none; /* hide on very small screens */
    }
}
/* =========================
   OUR PRODUCT RANGE
========================= */

.product-range {
    text-align: center;
}

.section-title {
    font-size: 42px;
    color: #fff;
    margin-bottom: 10px;
}

.section-title span {
    color: #d4af37;
}

.section-subtitle {
    color: #9ca3af;
    margin-bottom: 60px;
    font-size: 16px;
}

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

.range-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.range-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.range-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.25),
        rgba(0,0,0,0)
    );
}

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

.range-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    text-align: left;
}

.range-overlay h3 {
    color: #fbbf24;
    font-size: 22px;
    margin-bottom: 6px;
}

.range-overlay p {
    color: #e5e7eb;
    font-size: 14px;
}

.range-cta {
    margin-top: 60px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .product-range-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .product-range-grid {
        grid-template-columns: 1fr;
    }

    .range-card {
        height: 240px;
    }
}

/* =========================
   CLEANSPOT PREMIUM FOOTER
========================= */

.premium-footer {
  background: #000;
  padding: 90px 120px 45px;
  color: #d1d5db;
}

/* GRID FOR PERFECT ALIGNMENT */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  column-gap: 80px;
  align-items: start;
}

/* COMMON */
.footer-grid h3,
.footer-grid h4 {
  color: #f5c400;
  margin-bottom: 18px;
}

.footer-grid a {
  color: #e5e7eb;
  text-decoration: none;
  margin-bottom: 12px;
  display: block;
  font-size: 16px;
}

.footer-grid a:hover {
  color: #f5c400;
}

/* BRAND */
.footer-brand p {
  max-width: 300px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

.footer-social a {
  font-size: 18px;
}

/* CONTACT */
.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: rgba(245,196,0,0.25);
  margin: 70px 0 35px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #6b7280;
}

.footer-bottom p {
  margin-bottom: 6px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 50px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact a,
  .footer-contact span {
    justify-content: center;
  }
}

/* =========================
   BULK ORDER CTA SECTION
========================= */

.bulk-cta {
  padding: 100px 60px;
  background: radial-gradient(
    ellipse at center,
    rgba(245,196,0,0.08),
    rgba(0,0,0,0.95)
  );
}

.bulk-cta-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
  border-radius: 28px;

  background: linear-gradient(
    135deg,
    rgba(245,196,0,0.12),
    rgba(0,0,0,0.95)
  );

  border: 1px solid rgba(245,196,0,0.45);
  box-shadow:
    0 0 60px rgba(245,196,0,0.15),
    inset 0 0 40px rgba(245,196,0,0.05);

  text-align: center;
}

.bulk-cta-box h2 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.bulk-cta-box h2 span {
  color: #f5c400;
}

.bulk-cta-box p {
  font-size: 18px;
  color: #d1d5db;
  margin-bottom: 40px;
}

.bulk-btn {
  display: inline-block;
  padding: 16px 44px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;

  background: #f5c400;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bulk-btn:hover {
  background: #ffd84d;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245,196,0,0.45);
}

@media (max-width: 768px) {
  .bulk-cta {
    padding: 70px 20px;
  }

  .bulk-cta-box {
    padding: 60px 25px;
  }

  .bulk-cta-box h2 {
    font-size: 32px;
  }
}
/* =========================
   ABOUT HERO SECTION
========================= */

.about-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(
        180deg,
        rgba(212,175,55,0.15),
        rgba(0,0,0,0.9)
    );
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.about-hero h1 span {
    color: #d4af37;
}

.about-hero p {
    color: #9ca3af;
    font-size: 18px;
    max-width: 700px;
}

/* =========================
   OUR STORY SECTION
========================= */

.our-story {
    padding: 100px 80px;
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.story-text h2 span {
    color: #d4af37;
}

.story-text p {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .story-wrapper {
        grid-template-columns: 1fr;
    }

    .our-story {
        padding: 80px 40px;
    }
}

@media (max-width: 600px) {
    .story-text h2 {
        font-size: 34px;
    }
}

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

.stats-section {
    padding: 80px 80px;
    text-align: center;
}

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

.stat-item h3 {
    font-size: 56px;
    color: #d4af37;
    margin-bottom: 10px;
}

.stat-item p {
    color: #9ca3af;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   OUR VALUES – PREMIUM
========================= */

.values-section {
    text-align: center;
    padding: 100px 80px;
}

.values-title {
    font-size: 42px;
    color: #fff;
    margin-bottom: 10px;
}

.values-title span {
    color: #d4af37;
}

.values-subtitle {
    color: #9ca3af;
    font-size: 16px;
    margin-bottom: 60px;
}

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

/* VALUE CARD */
.value-card {
    background: radial-gradient(
        circle at top left,
        rgba(212,175,55,0.15),
        #0b0b0b 65%
    );
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 20px;
    padding: 36px 30px;
    text-align: left;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

/* Stagger animation */
.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }
.value-card:nth-child(5) { animation-delay: 0.5s; }
.value-card:nth-child(6) { animation-delay: 0.6s; }

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(212,175,55,0.25);
}

/* ICON */
.value-icon {
    font-size: 30px;
    margin-bottom: 18px;
    color: #d4af37;
}

/* TEXT */
.value-card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
}

.value-card p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
}

/* ANIMATION */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-section {
        padding: 80px 24px;
    }
}

/* =========================
   ABOUT IMAGE GALLERY
========================= */

.about-gallery {
    padding: 80px 80px;
}

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

.gallery-grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.gallery-grid img:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 35px 80px rgba(212,175,55,0.25);
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 280px;
    }
}

/* =========================
   MANUFACTURING EXCELLENCE
========================= */

.manufacturing-section {
    padding: 80px 80px;
    display: flex;
    justify-content: center;
}

.manufacturing-card {
    max-width: 1100px;
    width: 100%;
    text-align: center;
    padding: 60px 40px;
    border-radius: 26px;
    border: 1px solid rgba(212,175,55,0.35);
    background: radial-gradient(
        circle at top left,
        rgba(212,175,55,0.18),
        #0b0b0b 65%
    );
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
    animation: fadeUp 1s ease forwards;
}

.manufacturing-card h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 16px;
}

.manufacturing-card h2 span {
    color: #d4af37;
}

.manufacturing-card .iso {
    color: #e5e7eb;
    font-size: 18px;
    margin-bottom: 10px;
}

.manufacturing-card .location {
    color: #9ca3af;
    font-size: 15px;
}

/* Reuse animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .manufacturing-card h2 {
        font-size: 32px;
    }

    .manufacturing-section {
        padding: 60px 24px;
    }
}

/* ================================
   WHOLESALE PAGE STYLES
================================ */

/* HERO TEXT */
.wholesale-hero {
    padding: 140px 20px 100px;
    text-align: center;
    background: radial-gradient(circle at top, rgba(255,193,7,0.08), transparent 60%);
}

.wholesale-hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    animation: fadeUp 1s ease forwards;
}

.wholesale-hero h1 span {
    color: #f5c400;
}

.wholesale-hero p {
    font-size: 18px;
    color: #9ca3af;
    max-width: 720px;
    margin: 0 auto;
    animation: fadeUp 1.3s ease forwards;
}

/* IMAGE BANNER */
.wholesale-banner {
    position: relative;
    margin: 0 auto 120px;
    max-width: 92%;
    border-radius: 22px;
    overflow: hidden;
    animation: fadeIn 1.2s ease forwards;
}

.wholesale-banner img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

/* DARK OVERLAY */
.wholesale-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.85) 10%,
        rgba(0,0,0,0.55) 45%,
        rgba(0,0,0,0.15) 100%
    );
}

/* TEXT ON IMAGE */
.wholesale-banner-content {
    position: absolute;
    left: 60px;
    bottom: 70px;
    z-index: 2;
    max-width: 520px;
}

.wholesale-banner-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: #f5c400;
    margin-bottom: 14px;
    animation: slideLeft 1.2s ease forwards;
}

.wholesale-banner-content h2 span {
    color: #ffffff;
}

.wholesale-banner-content p {
    font-size: 17px;
    color: #e5e7eb;
    animation: slideLeft 1.4s ease forwards;
}

/* ================================
   ANIMATIONS
================================ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@media (max-width: 768px) {
    .wholesale-banner img {
        height: 420px;
    }

    .wholesale-banner-content {
        left: 30px;
        bottom: 40px;
    }
}

/* ================================
   WHY PARTNER SECTION
================================ */

.partner-section {
    padding: 120px 6%;
    text-align: center;
    background: radial-gradient(circle at top, rgba(255,193,7,0.08), transparent 60%);
}

.partner-section h2 {
    font-size: clamp(30px, 4vw, 48px);
    color: #ffffff;
    margin-bottom: 80px;
    font-weight: 700;
}

.partner-section h2 span {
    color: #f5c400;
}

/* GRID */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* CARD */
.partner-card {
    background: linear-gradient(
        180deg,
        rgba(255,193,7,0.10),
        rgba(0,0,0,0.9)
    );
    border: 1px solid rgba(245,196,0,0.35);
    border-radius: 22px;
    padding: 40px 26px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* HOVER GLOW */
.partner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(245,196,0,0.25), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(245,196,0,0.15);
}

/* ICON */
.partner-card .icon {
    font-size: 34px;
    color: #f5c400;
    margin-bottom: 18px;
}

/* TITLE */
.partner-card h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 12px;
}

/* TEXT */
.partner-card p {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.6;
}

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

@media (max-width: 1024px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
}


/* ================================
   WHOLESALE ENQUIRY FORM
================================ */

.wholesale-form-section {
    padding: 140px 6%;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at top, rgba(255,193,7,0.10), transparent 65%);
}

/* CARD */
.wholesale-form-card {
    width: 100%;
    max-width: 720px;
    background: linear-gradient(
        180deg,
        rgba(255,193,7,0.12),
        rgba(0,0,0,0.95)
    );
    border: 1px solid rgba(245,196,0,0.35);
    border-radius: 26px;
    padding: 60px 50px;
    box-shadow: 0 0 60px rgba(245,196,0,0.12);
    animation: fadeUp 0.9s ease forwards;
}

/* TITLE */
.wholesale-form-card h2 {
    text-align: center;
    font-size: clamp(26px, 3vw, 36px);
    color: #ffffff;
    margin-bottom: 12px;
}

/* SUBTITLE */
.wholesale-form-card .subtitle {
    text-align: center;
    color: #9ca3af;
    font-size: 15px;
    margin-bottom: 40px;
}

/* FORM */
.wholesale-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* INPUTS */
.wholesale-form input,
.wholesale-form textarea {
    background: transparent;
    border: 1px solid rgba(245,196,0,0.35);
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 15px;
    color: #ffffff;
    outline: none;
    transition: all 0.35s ease;
}

/* PLACEHOLDER */
.wholesale-form input::placeholder,
.wholesale-form textarea::placeholder {
    color: #9ca3af;
}

/* FOCUS EFFECT */
.wholesale-form input:focus,
.wholesale-form textarea:focus {
    border-color: #f5c400;
    box-shadow: 0 0 0 2px rgba(245,196,0,0.25);
}

/* BUTTON */
.wholesale-form button {
    margin-top: 20px;
    background: #f5c400;
    color: #000000;
    border: none;
    border-radius: 16px;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
}

/* BUTTON HOVER */
.wholesale-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(245,196,0,0.35);
}

/* ================================
   ANIMATION
================================ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 600px) {
    .wholesale-form-card {
        padding: 45px 24px;
    }
}


/* ================================
   WHOLESALE IMAGE GALLERY
================================ */

.wholesale-gallery {
    padding: 120px 6%;
}

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

.gallery-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: 420px;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* DARK GRADIENT OVERLAY */
.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.15)
    );
}

/* TEXT */
.gallery-overlay {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 2;
}

.gallery-overlay h3 {
    color: #f5c400;
    font-size: 22px;
    font-weight: 600;
}

/* HOVER ANIMATION */
.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card:hover {
    transform: translateY(-6px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-card {
        height: 360px;
    }
}

/* ================================
   DIRECT CONTACT STRIP
================================ */

.direct-contact {
    padding: 120px 6%;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255,193,7,0.10), transparent 65%);
}

.direct-contact h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: #ffffff;
    margin-bottom: 18px;
}

.direct-contact h2 span {
    color: #f5c400;
}

/* CONTACT TEXT */
.contact-details {
    display: flex;
    justify-content: center;
    gap: 18px;
    font-size: 18px;
    align-items: center;
}

.contact-details a {
    color: #f5c400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ffffff;
}

.contact-details span {
    color: #6b7280;
}

/* FADE-IN ANIMATION */
.direct-contact {
    animation: fadeUp 0.9s ease forwards;
}


/* ================= CONTACT PAGE ================= */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: #000;
  border-bottom: 1px solid #222;
}

.site-header nav a {
  margin: 0 14px;
  color: #ddd;
}

.site-header nav a.active,
.site-header nav a:hover {
  color: #f4b400;
}

.quote-btn {
  background: #f4b400;
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
}

/* HERO */
.contact-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  padding: 80px;
  background: linear-gradient(135deg, #0b0b0b, #111);
  border: 1px solid #222;
  border-radius: 18px;
  margin: 60px;
}

.contact-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.contact-hero h1 span {
  color: #f4b400;
}

.contact-hero p {
  color: #bbb;
  font-size: 16px;
  margin-bottom: 25px;
}

.business-hours p {
  margin: 6px 0;
  color: #aaa;
}

.contact-hero-image img {
  width: 100%;
  border-radius: 16px;
}

/* FORM */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px;
}

.contact-form-box {
  background: linear-gradient(135deg, #0f0f0f, #141414);
  padding: 50px;
  border-radius: 18px;
  border: 1px solid #222;
}

.contact-form-box h2 {
  margin-bottom: 10px;
}

.contact-form-box p {
  color: #aaa;
  margin-bottom: 30px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  background: #0b0b0b;
  border: 1px solid #333;
  color: #fff;
  border-radius: 8px;
}

.contact-form-box textarea {
  height: 130px;
}

.contact-form-box button {
  width: 100%;
  padding: 16px;
  background: #f4b400;
  border: none;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
}

.contact-images img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 20px;
}

/* FOOTER */
.premium-footer {
  background: #000;
  padding: 70px 80px 30px;
}

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

.footer-grid h4,
.footer-brand h3 {
  color: #f4b400;
  margin-bottom: 15px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: #aaa;
  margin-bottom: 10px;
  font-size: 14px;
}

.social-icons img {
  margin-right: 12px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #777;
  font-size: 13px;
}

/* ================================
   CONTACT PAGE
================================ */

.contact-hero {
    padding: 140px 6% 90px;
    text-align: center;
    background: radial-gradient(circle at top, rgba(255,193,7,0.12), transparent 70%);
}

.contact-hero h1 {
    font-size: clamp(34px, 5vw, 52px);
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-hero h1 span {
    color: #f5c400;
}

.contact-hero p {
    font-size: 18px;
    color: #9ca3af;
}

/* CONTACT CARDS */

.contact-cards {
    padding: 60px 6% 140px;
}

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

/* CARD STYLE */

.contact-card {
    background: linear-gradient(
        145deg,
        rgba(255,193,7,0.08),
        rgba(0,0,0,0.8)
    );
    border: 1px solid rgba(255,193,7,0.25);
    border-radius: 22px;
    padding: 42px 30px;
    text-align: center;
    transition: all 0.45s ease;
    animation: fadeUp 0.9s ease forwards;
}

.contact-card:nth-child(2) {
    animation-delay: 0.15s;
}

.contact-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* ICON */

.contact-card .icon {
    font-size: 30px;
    margin-bottom: 16px;
}

/* TEXT */

.contact-card h3 {
    color: #9ca3af;
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-card a,
.contact-card p {
    color: #f5c400;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
}

/* HOVER EFFECT */

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255,193,7,0.18);
}

/* RESPONSIVE */

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

/* ANIMATION */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================================
   FOOTER
================================ */

.site-footer {
    padding: 90px 6% 110px;
    text-align: center;
    background: radial-gradient(
        circle at top,
        rgba(255,193,7,0.14),
        transparent 70%
    );
    border-top: 1px solid rgba(255,193,7,0.25);
}

/* FOOTER CONTENT */

.footer-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #f5c400;
    margin-bottom: 18px;
    animation: fadeUp 0.9s ease forwards;
}

.footer-content p {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.7;
    animation: fadeUp 1.1s ease forwards;
}

/* SPACING */

.footer-meta {
    margin-top: 14px;
}

/* ANIMATION */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================================
   WHY CHOOSE CLEANSOPT
================================ */

.why-choose {
    padding: 110px 6%;
    text-align: center;
    background: radial-gradient(
        circle at top,
        rgba(255,193,7,0.15),
        transparent 70%
    );
}

/* HEADER */

.why-header h2 {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    animation: fadeUp 0.9s ease forwards;
}

.why-header h2 span {
    color: #f5c400;
}

.why-header p {
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 70px;
    animation: fadeUp 1.1s ease forwards;
}

/* GRID */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 34px;
}

/* CARD */

.why-card {
    background: linear-gradient(
        145deg,
        rgba(255,193,7,0.10),
        rgba(0,0,0,0.95)
    );
    border-radius: 18px;
    padding: 38px 26px;
    border: 1px solid rgba(255,193,7,0.35);
    transition: all 0.35s ease;
    animation: fadeUp 1.2s ease forwards;
}

/* ICON */

.why-card .icon {
    font-size: 32px;
    color: #f5c400;
    margin-bottom: 18px;
}

/* TEXT */

.why-card h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.6;
}

/* HOVER EFFECT */

.why-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(245,196,0,0.18);
}

/* ANIMATION */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





/* =========================
   BULK ORDER CTA SECTION
========================= */

.bulk-cta {
  padding: 100px 60px;
  background: radial-gradient(
    ellipse at center,
    rgba(245,196,0,0.08),
    rgba(0,0,0,0.95)
  );
}

.bulk-cta-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
  border-radius: 28px;

  background: linear-gradient(
    135deg,
    rgba(245,196,0,0.12),
    rgba(0,0,0,0.95)
  );

  border: 1px solid rgba(245,196,0,0.45);
  box-shadow:
    0 0 60px rgba(245,196,0,0.15),
    inset 0 0 40px rgba(245,196,0,0.05);

  text-align: center;
}

.bulk-cta-box h2 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.bulk-cta-box h2 span {
  color: #f5c400;
}

.bulk-cta-box p {
  font-size: 18px;
  color: #d1d5db;
  margin-bottom: 40px;
}

.bulk-btn {
  display: inline-block;
  padding: 16px 44px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;

  background: #f5c400;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bulk-btn:hover {
  background: #ffd84d;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245,196,0,0.45);
}

@media (max-width: 768px) {
  .bulk-cta {
    padding: 70px 20px;
  }

  .bulk-cta-box {
    padding: 60px 25px;
  }

  .bulk-cta-box h2 {
    font-size: 32px;
  }
}
/* =========================
   ADD TO CART BUTTON
========================= */

.add-cart-btn {
  margin-top: 14px;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;

  background: #f5c400;
  color: #000;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;

  transition: all 0.3s ease;
}

.add-cart-btn:hover {
  background: #ffd84d;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245,196,0,0.4);
}
/* =========================
   CART PAGE UI
========================= */

.cart-page {
  padding: 80px 60px;
  max-width: 1200px;
  margin: auto;
}

.cart-page h2 {
  font-size: 36px;
  color: #f5c400;
  margin-bottom: 40px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* CART ITEM */
.cart-item {
  display: flex;
  gap: 25px;
  background: #0f0f0f;
  border: 1px solid #222;
  padding: 25px;
  border-radius: 18px;
  align-items: center;
}

.cart-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 12px;
  background: #000;
}

.cart-info h4 {
  font-size: 20px;
  margin-bottom: 6px;
}

.cart-info p {
  color: #9ca3af;
  margin-bottom: 6px;
}

.cart-info .price {
  color: #f5c400;
  font-weight: 600;
}

/* ACTIONS */
.cart-actions {
  margin-left: auto;
  text-align: right;
}

.cart-actions button {
  background: #111;
  color: #fff;
  border: 1px solid #333;
  padding: 6px 12px;
  margin: 4px;
  border-radius: 6px;
  cursor: pointer;
}

.cart-actions button:hover {
  background: #f5c400;
  color: #000;
}

.cart-actions .remove {
  display: block;
  margin-top: 10px;
  background: transparent;
  color: #f87171;
  border: none;
}

/* SUMMARY */
.cart-summary {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-summary h3 {
  font-size: 24px;
}

/* WHATSAPP */
.whatsapp-btn {
  background: #f5c400;
  color: #000;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: #ffd84d;
}

.empty-cart {
  color: #9ca3af;
  font-size: 18px;
}
.cart-link {
  position: relative;
}

.cart-badge {
  background: #f5c400;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50%;
  margin-left: 6px;
}



.footer {
  background: #000;
  color: #ccc;
  padding: 60px 8% 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Brand */
.brand {
  color: #f5b000;
  font-size: 28px;
  font-weight: bold;
}

.footer-col h3 {
  color: #f5b000;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #f5b000;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: #ccc;
  margin-right: 12px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #f5b000;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #888;
}

/* Responsive Design */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

.hero-premium {
  position: relative;
  width: 100%;
  min-height: 95vh;
  overflow: hidden;
  background: #000;
}

/* FULL VIDEO BACKGROUND */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;   /* transparency level */
  z-index: 1;
}

/* DARK PREMIUM OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 20%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}

/* CONTENT */
.hero-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 110px 8%;
  color: #fff;
}

/* LEFT TEXT */
.hero-left {
  max-width: 540px;
}

.hero-tag {
  color: #f4b400;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 14px;
  display: inline-block;
}

.hero-left h1 {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-left p {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 32px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn.primary {
  background: #f4b400;
  color: #000;
}

.hero-btn.primary:hover {
  background: #ffcc33;
}

.hero-btn.outline {
  border: 1px solid #f4b400;
  color: #f4b400;
}

.hero-btn.outline:hover {
  background: #f4b400;
  color: #000;
}

/* RIGHT IMAGE */
.hero-right img {
  width: 440px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 36px;
  }

  .hero-right img {
    width: 320px;
  }
}

@media (max-width: 500px) {
  .hero-wrapper {
    padding: 80px 6%;
  }

  .hero-left h1 {
    font-size: 30px;
  }
}



/* ==========================================
   WHY CHOOSE CLEANSPOT – COMPLETE STYLES
========================================== */

.why-choose-exact {
  background: #000;
  padding: 140px 60px 160px;
  text-align: center;
}

/* Heading */
.why-choose-exact h2 {
  font-size: 42px;
  font-weight: 600;
  color: #f5c400;
  margin-bottom: 12px;
}

.why-subtitle {
  color: #9ca3af;
  font-size: 16px;
  margin-bottom: 100px;
}

/* Grid */
.why-grid-exact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Card */
.why-item {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 42px 28px 46px;
  transition: all 0.4s ease;
  height: 100%;
}

.why-item:hover {
  transform: translateY(-12px);
  border-color: rgba(245, 196, 0, 0.6);
  box-shadow:
    0 25px 45px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(245, 196, 0, 0.3);
}

/* Icon Circle */
.why-icon-circle {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 196, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  transition: all 0.35s ease;
}

.why-icon-circle img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.why-icon-circle::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(245, 196, 0, 0.18);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.why-icon-circle:hover::after {
  opacity: 1;
}

/* Text */
.why-item h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
}

.why-item p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

/* Scroll Reveal */
.reveal-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-section.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .why-grid-exact {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .why-choose-exact {
    padding: 100px 20px;
  }
}





.values-section {
  background: #000;
  padding: 80px 8%;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.values-section h2 {
  font-size: 42px;
  font-weight: 700;
}

.values-section h2 span {
  color: #f7b500;
}

.subtitle {
  color: #aaa;
  margin-top: 10px;
  font-size: 18px;
}

/* GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

/* CARD */
.value-card {
  background: radial-gradient(circle at top, rgba(247,181,0,0.08), transparent 60%),
              #050505;
  border: 1px solid rgba(247,181,0,0.25);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: left;
  position: relative;
  transition: 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  box-shadow: 0 0 0 transparent;
}

/* GOLD GLOW ON HOVER */
.value-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: #f7b500;
  box-shadow: 0 0 40px rgba(247,181,0,0.25);
}

/* ICON STYLE */
.icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(247,181,0,0.08);
  border: 1px solid rgba(247,181,0,0.35);
  margin-bottom: 18px;
  transition: 0.4s ease;
}

.icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #f7b500;
  stroke-width: 1.8;
  transition: 0.4s ease;
}

/* ICON ANIMATION */
.value-card:hover .icon {
  background: #f7b500;
  transform: rotate(8deg) scale(1.15);
}

.value-card:hover svg {
  stroke: #000;
}

/* TEXT */
.value-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.value-card p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.6;
}

/* RIPPLE EFFECT */
.value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(247,181,0,0.15), transparent 60%);
  opacity: 0;
  transition: 0.5s;
}

.value-card:hover::after {
  opacity: 1;
}

/* SCROLL ANIMATION */
.value-card.show {
  opacity: 1;
  transform: translateY(0);
}


.partner-simple {
  background: #000;
  padding: 80px 8%;
  text-align: center;
  color: #fff;
}

.partner-simple h2 {
  font-size: 40px;
  font-weight: 700;
}

.partner-simple h2 span {
  color: #f7b500;
}

/* GRID */
.simple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 50px;
}

/* CARD */
.simple-card {
  background: #050505;
  border: 1px solid rgba(247,181,0,0.25);
  border-radius: 20px;
  padding: 34px 28px;
  transition: 0.35s ease;
  text-align: center;
}

/* SIMPLE HOVER EFFECT */
.simple-card:hover {
  transform: translateY(-8px);
  border-color: #f7b500;
  box-shadow: 0 0 30px rgba(247,181,0,0.2);
}

/* ICON */
.simple-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: rgba(247,181,0,0.08);
  border: 1px solid rgba(247,181,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
}

.simple-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #f7b500;
  stroke-width: 2;
  transition: 0.35s ease;
}

/* ICON HOVER */
.simple-card:hover .simple-icon {
  background: #f7b500;
}

.simple-card:hover svg {
  stroke: #000;
}

/* TEXT */
.simple-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.simple-card p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.6;
}




.contact-simple {
  background: #000;
  padding: 70px 8%;
  color: #fff;
}

.contact-simple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

/* CARD */
.contact-simple-card {
  background: #050505;
  border: 1px solid rgba(247,181,0,0.25);
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  transition: 0.3s ease;
}

/* SIMPLE HOVER */
.contact-simple-card:hover {
  transform: translateY(-6px);
  border-color: #f7b500;
  box-shadow: 0 0 22px rgba(247,181,0,0.2);
}

/* ICON */
.contact-simple-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: rgba(247,181,0,0.08);
  border: 1px solid rgba(247,181,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.contact-simple-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #f7b500;
  stroke-width: 2;
  transition: 0.3s ease;
}

/* ICON HOVER */
.contact-simple-card:hover .contact-simple-icon {
  background: #f7b500;
}

.contact-simple-card:hover svg {
  stroke: #000;
}

/* TEXT */
.contact-simple-card h3 {
  font-size: 19px;
  margin-bottom: 6px;
  color: #ccc;
}

.contact-simple-card p {
  font-size: 17px;
  font-weight: 500;
}

.gold {
  color: #f7b500;
  font-weight: 600;
}
.wholesale-form-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at top, #1a1400, #000);
}

.form-card {
    width: 100%;
    max-width: 620px;
    background: linear-gradient(135deg, #111, #000);
    border: 1px solid rgba(255, 193, 7, 0.25);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 80px rgba(255, 193, 7, 0.08);
    animation: fadeUp 0.8s ease;
}

.form-card h2 {
    color: #fff;
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.form-subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 30px;
}

.form-card input,
.form-card textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    background: transparent;
    border: 1px solid rgba(255, 193, 7, 0.25);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-card input:focus,
.form-card textarea:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.form-card textarea {
    min-height: 120px;
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #ffc107;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.45);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .form-card {
        padding: 30px 20px;
    }

    .form-card h2 {
        font-size: 26px;
    }
}
/* Hide menu icon on desktop */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #f4b400;
  cursor: pointer;
}

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

  .main-header {
    padding: 12px 18px;
    position: relative;
  }

  .logo-text {
    font-size: 22px;
  }

  .quote-btn {
    display: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: #0d0d0d;
    width: 70%;
    padding: 20px;
    border-radius: 8px 0 0 8px;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid #222;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 22px;
  }

  .nav-links.show {
    display: flex;
  }
}
/* ===== STICKY HEADER ===== */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 6%;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* Smooth look when scrolling */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}
.nav-links a.active {
  color: #f4b400;
  font-weight: 600;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #f4b400;
  border-radius: 4px;
  box-shadow: 0 0 10px #f4b400;
}
.nav-links a:hover {
  color: #f4b400;
  text-shadow: 0 0 8px rgba(244,180,0,0.8);
}
/* ================= HEADER ================= */
.main-header {
  position: sticky;
  top: 0;
  background: #000;
  padding: 16px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* Logo */
.logo-area { display: flex; align-items: center; }
.logo-img { height: 40px; margin-right: 10px; }
.logo-text { color: #f4b400; font-size: 24px; font-weight: 700; }

/* Nav Links */
.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #f4b400;
  text-shadow: 0 0 8px rgba(244,180,0,0.8);
}

/* Active Page Glow */
.nav-links a.active {
  color: #f4b400;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #f4b400;
  border-radius: 4px;
  box-shadow: 0 0 10px #f4b400;
}

/* Quote Button */
.quote-btn {
  background: #f4b400;
  color: #000;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

/* Mobile Menu Icon */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 900px) {

  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #111;
    flex-direction: column;
    padding-top: 90px;
    gap: 28px;
    align-items: center;
    transition: 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 20px;
  }
}
/* ================= MOBILE HEADER FIX ================= */
@media (max-width: 900px) {

  .main-header {
    padding: 12px 4%;
  }

  .logo-text {
    font-size: 20px;
  }

  /* Hide normal nav on mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: #111;
    flex-direction: column;
    align-items: center;
    padding-top: 90px;
    gap: 28px;
    transition: 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  /* Prevent text wrapping like "Contact" */
  .nav-links a {
    font-size: 20px;
    white-space: nowrap;
  }
  /* Show hamburger */
  .menu-toggle {
    display: block;
    font-size: 26px;
    color: #fff;
    margin-left: auto;
  }

}
