/* Equippro Theme Customization Styles */

/* Primary orange color variables if needed, though theme preset has it */
:root {
    --equippro-orange: #ff5e14;
    --equippro-orange-hover: #e04f0d;
    --equippro-dark: #06163a;
    --equippro-light: #f8f9fc;
}

/* Float WhatsApp Button */
.wa-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.wa-float:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: scale(1.1);
}

/* Custom Page Elements for Homepage */
.custom-hero {
    background: linear-gradient(rgba(6, 22, 58, 0.8), rgba(6, 22, 58, 0.8)), url('http://localhost/Wordpress/wp-content/uploads/2026/07/0-7-1-5-ton-8-series.png') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    color: #ffffff;
    text-align: center;
}
.custom-hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--equippro-orange);
    margin-bottom: 15px;
}
.custom-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}
.custom-hero-title span {
    color: var(--equippro-orange);
}
.custom-hero-desc {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 35px;
    color: #d1d5db;
    line-height: 1.8;
}

/* Stats Counter Section */
.custom-stats-section {
    background: #06163a;
    padding: 50px 0;
    color: #ffffff;
}
.stat-box {
    text-align: center;
    padding: 20px;
}
.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--equippro-orange);
    margin-bottom: 5px;
    font-family: 'Barlow Condensed', sans-serif;
}
.stat-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #959ba9;
}

/* Sectors Grid */
.sector-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 3px solid transparent;
}
.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--equippro-orange);
}
.sector-icon-wrapper {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: var(--equippro-light);
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--equippro-orange);
    transition: all 0.3s ease;
}
.sector-card:hover .sector-icon-wrapper {
    background: var(--equippro-orange);
    color: #ffffff;
}
.sector-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}
.sector-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 0;
}

/* Custom CTA Banner */
.custom-cta-banner {
    background: linear-gradient(135deg, #ff5e14, #ff7a00);
    padding: 60px 0;
    color: #ffffff;
}
.custom-cta-banner h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 15px;
}
.custom-cta-banner p {
    font-size: 16px;
    margin-bottom: 0;
    color: rgba(255,255,255,0.9);
}

/* Custom Product Grid Overrides to style loop products correctly */
.woocommerce ul.products li.product {
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.woocommerce ul.products li.product img {
    margin-bottom: 15px;
    border-radius: 3px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--equippro-dark);
    margin-bottom: 15px;
    height: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.woocommerce ul.products li.product .button {
    background: var(--equippro-orange) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    border-radius: 3px !important;
    border: none !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    margin-top: 10px !important;
}
.woocommerce ul.products li.product .button:hover {
    background: var(--equippro-dark) !important;
}

/* Single Product WA Request Quote Button */
.single-pro-wa-btn {
    background-color: #25d366;
    color: #ffffff !important;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}
.single-pro-wa-btn:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4);
}

/* Core Values cards */
.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    border-left: 4px solid var(--equippro-orange);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}
.value-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--equippro-dark);
}
.value-card p {
    margin-bottom: 0;
    font-size: 14px;
    color: #666;
}

/* ======================================================
   HOMEPAGE PREMIUM SECTIONS — Equippro Brand
   ====================================================== */

/* Hero Section Buttons */
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--equippro-orange);
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    margin-right: 12px;
    margin-bottom: 10px;
}
.hero-btn-primary:hover {
    background: #c94800;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,94,20,0.4);
}
.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff !important;
    padding: 13px 32px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    border: 2px solid rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}
.hero-btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

/* Section Headings */
.eq-section-label {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--equippro-orange);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}
.eq-section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--equippro-dark);
    margin-bottom: 12px;
    line-height: 1.25;
}
.eq-section-sub {
    color: #6b7280;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}
.eq-section-title-white { color: #fff; }
.eq-section-sub-white   { color: rgba(255,255,255,0.75); }

/* About Section */
.eq-about-section {
    padding: 90px 0;
    background: #f8f9fc;
}
.eq-about-text p {
    color: #555;
    line-height: 1.9;
    font-size: 15px;
}
.eq-about-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 35px;
}
.eq-about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #444;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.eq-about-list li i {
    color: var(--equippro-orange);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}
.eq-about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    height: 100%;
    min-height: 350px;
    background: var(--equippro-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}
.eq-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-stat-badge {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border-radius: 8px;
    padding: 22px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    margin-bottom: 16px;
}
.eq-stat-badge .num {
    font-size: 38px;
    font-weight: 800;
    color: var(--equippro-orange);
    line-height: 1;
    flex-shrink: 0;
    min-width: 70px;
}
.eq-stat-badge .label strong {
    display: block;
    font-weight: 700;
    color: var(--equippro-dark);
    font-size: 15px;
}
.eq-stat-badge .label span {
    font-size: 13px;
    color: #888;
}

/* Why Choose Us */
.eq-why-section {
    padding: 90px 0;
    background: var(--equippro-dark);
}
.eq-why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 35px 28px;
    transition: all 0.3s ease;
    height: 100%;
}
.eq-why-card:hover {
    background: rgba(255,94,20,0.12);
    border-color: var(--equippro-orange);
    transform: translateY(-5px);
}
.eq-why-icon {
    font-size: 36px;
    color: var(--equippro-orange);
    margin-bottom: 18px;
}
.eq-why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.eq-why-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Partners / Brands */
.eq-brands-section {
    padding: 80px 0;
    background: #fff;
}
.eq-brand-logo {
    background: #f8f9fc;
    border: 1px solid #eee;
    border-radius: 6px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    color: var(--equippro-dark);
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    cursor: default;
}
.eq-brand-logo:hover {
    background: var(--equippro-orange);
    color: #fff;
    border-color: var(--equippro-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,94,20,0.25);
}

/* CTA Section */
.eq-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--equippro-orange) 0%, #c94800 100%);
    text-align: center;
}
.eq-cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}
.eq-cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.8;
}
.eq-cta-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--equippro-orange) !important;
    padding: 14px 35px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    margin: 5px;
}
.eq-cta-btn-white:hover {
    background: var(--equippro-dark);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}
.eq-cta-btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff !important;
    padding: 13px 35px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    border: 2px solid rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    margin: 5px;
}
.eq-cta-btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

/* Featured Products Section overrides */
.eq-products-section {
    padding: 90px 0;
    background: #f8f9fc;
}
.eq-products-section .woocommerce ul.products {
    margin: 0;
}
.eq-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--equippro-orange) !important;
    padding: 13px 35px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    border: 2px solid var(--equippro-orange);
    transition: all 0.3s ease;
    margin-top: 40px;
}
.eq-view-all-btn:hover {
    background: var(--equippro-orange);
    color: #fff !important;
    transform: translateY(-2px);
}

/* WhatsApp Pulse Animation */
@keyframes wa-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.wa-float { animation: wa-pulse 2s infinite; }

/* Responsive */
@media (max-width: 767px) {
    .eq-section-title { font-size: 24px; }
    .eq-cta-section h2 { font-size: 26px; }
    .custom-hero-title { font-size: 32px; }
    .eq-stat-badge .num { font-size: 28px; min-width: 55px; }
    .hero-btn-primary, .hero-btn-outline { display: block; text-align: center; margin: 8px auto; max-width: 250px; }
}

/* --- Custom Products Grid for Homepage --- */
.eq-custom-products-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.eq-custom-product-col {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 15px;
}
@media (max-width: 1199px) {
    .eq-custom-product-col {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}
@media (max-width: 991px) {
    .eq-custom-product-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (max-width: 575px) {
    .eq-custom-product-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.product-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #eaeaea;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: var(--equippro-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.1);
}
.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--equippro-orange);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
}
.product-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6, 22, 58, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}
.product-card:hover .product-overlay {
  opacity: 1;
}
.product-overlay .btn-accent {
  transform: translateY(20px);
  opacity: 0;
  background: var(--equippro-orange);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.product-card:hover .product-overlay .btn-accent {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.1s;
}
.product-overlay .btn-accent:hover {
  background: var(--equippro-orange-hover);
}
.product-info {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--equippro-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.product-info p {
  color: #788892;
  font-size: 13px;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ======================================================
   BRAND INFINITE MARQUEE SLIDER
   ====================================================== */
.eq-brand-marquee-container {
    overflow: hidden;
    padding: 10px 0;
    width: 100%;
}
.eq-brand-marquee-row {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 30px;
    padding: 5px 0;
    width: 100%;
}
.eq-brand-marquee-track {
    display: flex;
    gap: 30px;
    flex-shrink: 0;
    min-width: 100%;
    align-items: center;
    justify-content: space-around;
}

/* Keyframe Animations */
@keyframes marquee-ltr {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}
@keyframes marquee-rtl {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.eq-marquee-right .eq-brand-marquee-track {
    animation: marquee-ltr 22s linear infinite;
}
.eq-marquee-left .eq-brand-marquee-track {
    animation: marquee-rtl 22s linear infinite;
}

/* Pause scroll on hover */
.eq-brand-marquee-row:hover .eq-brand-marquee-track {
    animation-play-state: paused;
}

/* Brand Card Style */
.eq-brand-card {
    background: #f8f9fc;
    border: 1px solid #eee;
    border-radius: 8px;
    width: 190px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.eq-brand-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: all 0.3s ease;
}
.eq-brand-card:hover {
    background: #ffffff;
    border-color: var(--equippro-orange);
    box-shadow: 0 8px 25px rgba(255,94,20,0.1);
    transform: translateY(-3px);
}
.eq-brand-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ======================================================
   BACK TO TOP BUTTON ALIGNMENT OVERRIDE
   ====================================================== */
#backtotop {
    right: 40px !important;
    border-radius: 4px;
    z-index: 9999 !important;
    transition: all ease 300ms, bottom 0s !important;
}

/* Move #backtotop above WhatsApp floating button (bottom: 40px, height: 60px) when visible */
#backtotop[style*="opacity: 1"],
#backtotop[style*="opacity: 1;"],
#backtotop[style*="display: block"] {
    bottom: 115px !important;
}
#backtotop[style*="opacity: 0"],
#backtotop[style*="opacity: 0;"] {
    bottom: -60px !important;
}


