/*
Theme Name: Clearamax
Theme URI: https://clearamax.pk
Author: Clearamax
Author URI: https://clearamax.pk
Description: Custom WooCommerce theme for Clearamax, a premium cleaning products brand. Converted from static HTML mockups (Home, Shop, Categories, Bulk Orders/B2B, About, Contact).
Version: 1.0.0
Requires PHP: 7.4
Text Domain: clearamax
Tags: e-commerce, woocommerce, custom-menu, translation-ready
*/

/* ==========================================================================
   RESET / BASE
   ========================================================================== */

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

body{
  font-family:'Poppins',sans-serif;
  background:#f7f9fb;
  color:#222;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

ul{ list-style:none; }

.container{
  width:90%;
  max-width:1300px;
  margin:auto;
}

section{
  padding:80px 0;
}

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

.section-title h2{
  font-size:42px;
  margin-bottom:12px;
}

.section-title p{
  color:#666;
  max-width:700px;
  margin:auto;
}

.btn-primary{
  display:inline-block;
  padding:16px 34px;
  border-radius:10px;
  background:#00a651;
  color:#fff;
  font-weight:600;
  transition:0.3s;
  border:none;
  cursor:pointer;
  font-family:inherit;
  font-size:16px;
}

.btn-primary:hover{
  background:#008743;
}

.btn-secondary{
  display:inline-block;
  padding:16px 34px;
  border-radius:10px;
  background:#fff;
  color:#111;
  font-weight:600;
  transition:0.3s;
  border:none;
  cursor:pointer;
  font-family:inherit;
  font-size:16px;
}

.btn-secondary:hover{
  transform:translateY(-3px);
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */

.top-bar{
  background:#0b1320;
  color:#fff;
  padding:10px 0;
  font-size:14px;
}

.top-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}

.top-content a{ color:#fff; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */

header.site-header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
}

.logo{
  font-size:32px;
  font-weight:800;
  color:#00a651;
}

.site-logo img{
  max-height:50px;
  width:auto;
}

nav.primary-nav ul{
  display:flex;
  gap:28px;
  flex-wrap:wrap;
}

nav.primary-nav ul li a{
  font-weight:500;
  transition:0.3s;
}

nav.primary-nav ul li a:hover,
nav.primary-nav ul li.current-menu-item > a,
nav.primary-nav ul li.current_page_item > a{
  color:#00a651;
}

.header-icons{
  display:flex;
  gap:18px;
  font-size:20px;
  align-items:center;
}

.header-icons a{ position:relative; }

.cart-count{
  position:absolute;
  top:-8px;
  right:-10px;
  background:#00a651;
  color:#fff;
  font-size:10px;
  width:16px;
  height:16px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.menu-toggle{
  display:none;
  background:none;
  border:none;
  font-size:26px;
  cursor:pointer;
}

/* ==========================================================================
   HOME HERO
   ========================================================================== */

.hero{
  min-height:90vh;
  background:linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
  url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?q=80&w=1400&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  color:#fff;
}

.hero-content{ max-width:650px; }

.hero h1{
  font-size:68px;
  line-height:1.1;
  margin-bottom:20px;
  font-weight:800;
}

.hero p{
  font-size:20px;
  margin-bottom:35px;
  color:#e5e5e5;
}

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

.btn{
  display:inline-block;
  padding:16px 34px;
  border-radius:10px;
  font-weight:600;
  transition:0.3s;
}

/* generic page hero (About, Shop, Categories, Contact) */

.page-hero{
  background:linear-gradient(135deg,#00a651 0%,#007a3d 100%);
  padding:80px 0;
  color:#fff;
  text-align:center;
}

.page-hero.dark{
  background:linear-gradient(135deg,#0d1727 0%,#1a3a5c 100%);
  text-align:left;
  padding:100px 0;
  position:relative;
  overflow:hidden;
}

.page-hero.dark::before{
  content:'';
  position:absolute;
  top:-50%;
  right:-20%;
  width:600px;
  height:600px;
  background:rgba(0,166,81,0.15);
  border-radius:50%;
}

.page-hero h1{
  font-size:52px;
  margin-bottom:15px;
  position:relative;
}

.page-hero.dark h1{ font-size:54px; }

.page-hero p{
  font-size:18px;
  opacity:0.9;
  max-width:600px;
  margin:auto;
  position:relative;
}

.page-hero.dark p{
  opacity:0.85;
  max-width:650px;
  margin:0;
  line-height:1.7;
}

/* banner with a custom background image (set via the Page Banner meta box) */
.page-hero.has-image{
  background-size:cover;
  background-position:center;
  position:relative;
}

.page-hero.has-image::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(0,166,81,0.82),rgba(0,122,61,0.82));
  z-index:0;
}

.page-hero.has-image.dark::after{
  background:linear-gradient(135deg,rgba(13,23,39,0.85),rgba(26,58,92,0.85));
}

.page-hero.has-image .container{
  position:relative;
  z-index:1;
}

/* ==========================================================================
   HOME: CATEGORIES / PRODUCTS / FEATURES / REVIEWS / BLOG / FAQ
   ========================================================================== */

.categories{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:25px;
}

.category-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}

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

.category-content{ padding:25px; text-align:center; }
.category-content h3{ margin-bottom:10px; }

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

.product-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.07);
  transition:0.3s;
  position:relative;
}

.product-card:hover{ transform:translateY(-8px); box-shadow:0 15px 40px rgba(0,0,0,0.12); }

.product-info{ padding:24px; }
.product-info h3{ margin-bottom:10px; font-size:19px; line-height:1.4; }
.product-info p{ color:#666; font-size:14px; margin-bottom:16px; line-height:1.6; }

.price{
  color:#00a651;
  font-size:22px;
  font-weight:700;
  margin-bottom:18px;
}

.cart-btn, .add_to_cart_button, .single_add_to_cart_button{
  width:100%;
  border:none;
  padding:14px;
  border-radius:10px;
  background:#00a651 !important;
  color:#fff !important;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
  font-size:15px;
  text-align:center;
  display:block;
}

.cart-btn:hover, .add_to_cart_button:hover, .single_add_to_cart_button:hover{
  background:#008743 !important;
}

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

.feature-box{
  background:#fff;
  padding:40px 30px;
  text-align:center;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.feature-box i{
  font-size:45px;
  color:#00a651;
  margin-bottom:20px;
  display:block;
  font-style:normal;
}

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

.before-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.before-card-content{ padding:25px; }

.reviews{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:25px;
}

.review-box{
  background:#fff;
  padding:35px;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.review-box h4{ margin-top:20px; color:#00a651; }

.bulk-section{
  background:#0d1727;
  color:#fff;
  border-radius:30px;
  padding:60px;
}

.bulk-section.dark-gradient{
  background:linear-gradient(135deg,#0d1727 0%,#162a45 100%);
}

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

.bulk-form input,
.bulk-form textarea,
.bulk-form select{
  width:100%;
  padding:16px;
  border:none;
  border-radius:10px;
  margin-bottom:15px;
  font-family:inherit;
}

.bulk-form button{
  width:100%;
  padding:16px;
  border:none;
  border-radius:10px;
  background:#00a651;
  color:#fff;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
}

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

.blog-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.blog-content{ padding:24px; }
.blog-content h3{ margin-bottom:10px; }
.blog-content p{ color:#666; font-size:14px; }

.faq{ max-width:900px; margin:auto; }

.faq-item{
  background:#fff;
  margin-bottom:20px;
  padding:25px;
  border-radius:15px;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.faq-item h3{ margin-bottom:10px; color:#00a651; }

/* ==========================================================================
   SHOP (WooCommerce archive / loop styling)
   ========================================================================== */

.filter-bar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:40px;
  flex-wrap:wrap;
  gap:20px;
}

.filter-buttons{ display:flex; gap:12px; flex-wrap:wrap; }

.filter-btn{
  padding:10px 22px;
  border:2px solid #e0e0e0;
  background:#fff;
  border-radius:30px;
  cursor:pointer;
  font-weight:500;
  transition:0.3s;
  font-family:inherit;
  display:inline-block;
}

.filter-btn:hover, .filter-btn.active{
  border-color:#00a651;
  background:#00a651;
  color:#fff;
}

.sort-select, select.orderby{
  padding:12px 20px;
  border:2px solid #e0e0e0;
  border-radius:10px;
  font-family:inherit;
  font-size:14px;
  cursor:pointer;
}

ul.products, .products-grid{
  display:grid !important;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr)) !important;
  gap:30px !important;
  list-style:none;
}

ul.products li.product, .product-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.07);
  transition:0.3s;
  position:relative;
  margin:0 !important;
  padding:0 !important;
  float:none !important;
  width:100% !important;
}

ul.products li.product:hover, .product-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.product-badge{
  position:absolute;
  top:15px;
  left:15px;
  background:#ff4757;
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:12px;
  font-weight:600;
  z-index:2;
}

.product-badge.new, .onsale{
  background:#00a651 !important;
  position:absolute !important;
  top:15px;
  left:15px;
  border-radius:20px !important;
  padding:6px 14px !important;
  font-size:12px !important;
  min-height:0 !important;
  min-width:0 !important;
  line-height:normal !important;
}

.product-image, ul.products li.product a img{
  position:relative;
  overflow:hidden;
  height:240px;
  width:100%;
  object-fit:cover;
}

.product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.4s;
}

.product-category{
  color:#00a651;
  font-size:13px;
  font-weight:600;
  margin-bottom:8px;
  text-transform:uppercase;
  letter-spacing:0.5px;
}

.price-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:16px;
}

.old-price, del{
  color:#999;
  font-size:15px;
  text-decoration:line-through;
  margin-left:8px;
}

.rating{ color:#ffc107; font-size:14px; }

ul.products li.product .woocommerce-loop-product__title{
  font-size:19px;
  margin-bottom:10px;
  padding:24px 24px 0;
  line-height:1.4;
}

ul.products li.product .price{
  padding:0 24px;
  display:block;
  margin-bottom:16px;
}

ul.products li.product .button{
  margin:0 24px 24px;
  width:calc(100% - 48px);
}

.pagination, nav.woocommerce-pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-top:60px;
}

nav.woocommerce-pagination ul{ display:flex; gap:10px; }

.pagination a, .pagination span,
nav.woocommerce-pagination a, nav.woocommerce-pagination span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:45px;
  height:45px;
  border-radius:10px;
  background:#fff;
  box-shadow:0 3px 10px rgba(0,0,0,0.06);
  font-weight:600;
  transition:0.3s;
  border:none !important;
}

.pagination a:hover, .pagination span.active,
nav.woocommerce-pagination a:hover, nav.woocommerce-pagination .current{
  background:#00a651;
  color:#fff;
}

/* Single product */

.woocommerce div.product{
  background:#fff;
  border-radius:20px;
  padding:40px;
  box-shadow:0 10px 30px rgba(0,0,0,0.07);
}

.woocommerce div.product .product_title{
  color:#1a2a4a;
}

.woocommerce div.product p.price, .woocommerce div.product span.price{
  color:#00a651;
  font-size:26px;
  font-weight:700;
}

/* ==========================================================================
   PRODUCT CATEGORIES PAGE
   ========================================================================== */

.categories-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:35px;
}

.category-card.big{
  border-radius:24px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  cursor:pointer;
}

.category-card.big:hover{
  transform:translateY(-12px);
  box-shadow:0 25px 55px rgba(0,0,0,0.14);
}

.category-image{
  height:220px;
  overflow:hidden;
  position:relative;
}

.category-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s;
}

.category-card.big:hover .category-image img{ transform:scale(1.1); }

.category-overlay{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  background:linear-gradient(to top,rgba(0,166,81,0.9),transparent);
  padding:30px 25px 20px;
  color:#fff;
}

.category-count{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:1px;
  opacity:0.9;
  margin-bottom:5px;
}

.category-overlay h3{ font-size:26px; font-weight:700; }

.category-card.big .category-content{ padding:28px; text-align:left; }

.category-card.big .category-content p{
  color:#666;
  font-size:15px;
  line-height:1.7;
  margin-bottom:20px;
}

.category-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#00a651;
  font-weight:600;
  transition:0.3s;
}

.category-link:hover{ gap:14px; }

.featured-banner{
  background:linear-gradient(135deg,#0d1727 0%,#1a2a4a 100%);
  border-radius:30px;
  padding:60px;
  margin-top:50px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
  color:#fff;
}

.featured-banner h2{ font-size:38px; margin-bottom:20px; line-height:1.2; }
.featured-banner p{ color:#c7c7c7; line-height:1.8; margin-bottom:25px; }

.featured-image{ border-radius:20px; overflow:hidden; height:350px; }
.featured-image img{ width:100%; height:100%; object-fit:cover; }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

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

.about-image-wrapper{
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.about-image-wrapper img{ height:480px; object-fit:cover; }

.about-text h2{ font-size:40px; line-height:1.2; margin-bottom:22px; color:#1a2a4a; }
.about-text h2 span{ color:#00a651; }
.about-text > p{ color:#555; font-size:16px; line-height:1.9; margin-bottom:25px; }

.about-features{ display:flex; flex-direction:column; gap:18px; margin-top:20px; }
.about-feature-item{ display:flex; align-items:center; gap:15px; }

.feature-icon-box{
  width:50px;
  height:50px;
  background:linear-gradient(135deg,#e8f8ee,#d4f5e3);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  flex-shrink:0;
}

.about-feature-item h4{ font-size:17px; margin-bottom:3px; }
.about-feature-item p{ color:#777; font-size:14px; }

.mission-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
  gap:35px;
}

.mission-card{
  background:#fff;
  padding:45px 38px;
  border-radius:24px;
  box-shadow:0 15px 45px rgba(0,0,0,0.07);
  position:relative;
  overflow:hidden;
  transition:0.3s;
}

.mission-card:hover{ transform:translateY(-8px); box-shadow:0 20px 55px rgba(0,0,0,0.12); }

.mission-card::before{
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:5px;
  background:linear-gradient(90deg,#00a651,#00c972);
}

.mission-icon{
  width:70px;
  height:70px;
  background:linear-gradient(135deg,#00a651,#00c972);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  margin-bottom:25px;
}

.mission-card h3{ font-size:26px; margin-bottom:15px; color:#1a2a4a; }
.mission-card p{ color:#666; line-height:1.8; font-size:15px; }

.values-section{
  background:linear-gradient(135deg,#0d1727 0,#162a45 100%);
  border-radius:30px;
  padding:80px 60px;
  color:#fff;
}

.values-header{ text-align:center; margin-bottom:55px; }
.values-header h2{ font-size:42px; margin-bottom:15px; }
.values-header p{ color:#b8c5d6; font-size:17px; max-width:550px; margin:auto; }

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

.value-item{
  text-align:center;
  padding:35px 25px;
  background:rgba(255,255,255,0.06);
  border-radius:18px;
  transition:0.3s;
  backdrop-filter:blur(10px);
}

.value-item:hover{ background:rgba(255,255,255,0.1); transform:translateY(-5px); }
.value-icon{ font-size:48px; margin-bottom:18px; }
.value-item h4{ font-size:20px; margin-bottom:10px; }
.value-item p{ color:#9aa8b8; font-size:14px; line-height:1.7; }

.team-section{ text-align:center; }
.team-section h2{ font-size:40px; margin-bottom:12px; }
.team-section > p{ color:#666; max-width:550px; margin:0 auto 50px; font-size:17px; }

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

.team-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 35px rgba(0,0,0,0.07);
  transition:0.3s;
}

.team-card:hover{ transform:translateY(-8px); box-shadow:0 18px 45px rgba(0,0,0,0.12); }
.team-image{ height:280px; overflow:hidden; }
.team-image img{ width:100%; height:100%; object-fit:cover; transition:0.5s; }
.team-card:hover .team-image img{ transform:scale(1.08); }
.team-info{ padding:25px; }
.team-info h3{ font-size:21px; margin-bottom:5px; }
.team-info p{ color:#00a651; font-weight:500; font-size:14px; margin-bottom:12px; }
.team-social{ display:flex; justify-content:center; gap:12px; }

.team-social a{
  width:36px; height:36px;
  background:#f0f0f0;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  transition:0.3s;
}

.team-social a:hover{ background:#00a651; color:#fff; }

.cta-section{
  text-align:center;
  background:linear-gradient(135deg,#e8f8ee,#d4f5e3);
  border-radius:30px;
  padding:70px;
}

.cta-section h2{ font-size:38px; margin-bottom:15px; color:#1a2a4a; }
.cta-section p{ color:#555; font-size:17px; max-width:550px; margin:0 auto 30px; }
.cta-section .btn-secondary{ margin-left:15px; }

/* ==========================================================================
   B2B / BULK ORDERS PAGE
   ========================================================================== */

.b2b-features{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  margin-bottom:60px;
}

.b2b-card{
  background:#fff;
  padding:40px 30px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  text-align:center;
  transition:0.3s;
  border-top:4px solid transparent;
}

.b2b-card:hover{ transform:translateY(-8px); border-top-color:#00a651; box-shadow:0 15px 40px rgba(0,0,0,0.1); }

.b2b-icon{
  width:80px; height:80px;
  background:linear-gradient(135deg,#00a651,#00c972);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
  margin:0 auto 22px;
}

.b2b-card h3{ font-size:21px; margin-bottom:12px; }
.b2b-card p{ color:#666; line-height:1.7; font-size:15px; }

.industries-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:25px;
}

.industry-item{
  background:#fff;
  padding:35px 25px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 8px 25px rgba(0,0,0,0.05);
  transition:0.3s;
}

.industry-item:hover{ transform:translateY(-5px); box-shadow:0 12px 35px rgba(0,0,81,0.1); }
.industry-icon{ font-size:42px; margin-bottom:15px; }
.industry-item h4{ font-size:17px; color:#333; }

.bulk-header{ text-align:center; margin-bottom:50px; }
.bulk-header h2{ font-size:42px; margin-bottom:15px; }
.bulk-header p{ color:#b8c5d6; font-size:17px; max-width:600px; margin:auto; }

.bulk-benefits{ display:flex; flex-direction:column; gap:22px; }
.benefit-item{ display:flex; align-items:flex-start; gap:16px; }

.benefit-check{
  width:28px; height:28px;
  background:#00a651;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  margin-top:2px;
  font-size:14px;
}

.benefit-text h4{ font-size:18px; margin-bottom:5px; }
.benefit-text p{ color:#9aa8b8; font-size:14px; line-height:1.6; }

.bulk-form-wrapper{
  background:rgba(255,255,255,0.05);
  padding:40px;
  border-radius:20px;
  backdrop-filter:blur(10px);
}

.bulk-form-wrapper h3{ font-size:24px; margin-bottom:25px; }

.stats-bar{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:30px;
  margin-top:70px;
}

.stat-item{
  text-align:center;
  padding:30px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.stat-number{ font-size:44px; font-weight:800; color:#00a651; margin-bottom:8px; }
.stat-label{ color:#666; font-size:15px; }

/* ==========================================================================
   FORM FIELDS (shared: contact + b2b)
   ========================================================================== */

.form-group{ margin-bottom:18px; }

.form-group label{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  color:#c7d0db;
  font-weight:600;
}

.contact-form-wrapper .form-group label{ color:#333; }

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:16px;
  border:2px solid rgba(255,255,255,0.1);
  border-radius:12px;
  background:rgba(255,255,255,0.08);
  color:#fff;
  font-family:inherit;
  font-size:15px;
  transition:0.3s;
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group select,
.contact-form-wrapper .form-group textarea{
  border:2px solid #e8e8e8;
  background:#fafafa;
  color:#222;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline:none;
  border-color:#00a651;
  background:rgba(255,255,255,0.12);
}

.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group select:focus,
.contact-form-wrapper .form-group textarea:focus{
  background:#fff;
  box-shadow:0 0 0 4px rgba(0,166,81,0.1);
}

.form-group textarea{ resize:vertical; min-height:120px; }
.form-group select option{ background:#1a2a4a; color:#fff; }
.contact-form-wrapper .form-group select option{ background:#fff; color:#222; }

.submit-btn{
  width:100%;
  padding:18px;
  border:none;
  border-radius:12px;
  background:linear-gradient(135deg,#00a651,#00c972);
  color:#fff;
  font-size:17px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
  margin-top:10px;
}

.submit-btn:hover{ transform:translateY(-3px); box-shadow:0 10px 30px rgba(0,166,81,0.4); }

.form-notice{
  padding:16px 20px;
  border-radius:10px;
  margin-bottom:25px;
  font-size:14px;
  font-weight:600;
}

.form-notice.success{ background:#d4f5e3; color:#00753a; }
.form-notice.error{ background:#ffe1e4; color:#b3001f; }

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

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  margin-bottom:60px;
}

.contact-info-section h2{ font-size:36px; margin-bottom:15px; color:#1a2a4a; }
.contact-info-section > p{ color:#666; line-height:1.8; margin-bottom:35px; font-size:16px; }

.info-cards{ display:flex; flex-direction:column; gap:22px; }

.info-card{
  display:flex;
  align-items:flex-start;
  gap:20px;
  background:#fff;
  padding:25px;
  border-radius:16px;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
  transition:0.3s;
}

.info-card:hover{ transform:translateX(5px); box-shadow:0 12px 35px rgba(0,0,0,0.1); }

.info-icon{
  width:58px; height:58px;
  background:linear-gradient(135deg,#e8f8ee,#d4f5e3);
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  flex-shrink:0;
}

.info-content h4{ font-size:18px; margin-bottom:6px; color:#1a2a4a; }
.info-content p{ color:#666; font-size:15px; line-height:1.6; }
.info-content a{ color:#00a651; font-weight:500; }
.info-content a:hover{ text-decoration:underline; }

.social-links{ margin-top:30px; padding-top:30px; border-top:2px solid #eee; }
.social-links h4{ font-size:17px; margin-bottom:18px; color:#333; }
.social-buttons{ display:flex; gap:12px; }

.social-btn{
  width:50px; height:50px;
  background:#f0f0f0;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  transition:0.3s;
}

.social-btn:hover{ background:#00a651; color:#fff; transform:translateY(-3px); }

.contact-form-wrapper{
  background:#fff;
  padding:45px;
  border-radius:24px;
  box-shadow:0 20px 55px rgba(0,0,0,0.08);
}

.contact-form-wrapper h3{ font-size:28px; margin-bottom:8px; color:#1a2a4a; }
.form-subtitle{ color:#777; font-size:15px; margin-bottom:30px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }

.map-section{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 15px 45px rgba(0,0,0,0.07);
}

.map-header{ padding:30px 40px; border-bottom:1px solid #eee; }
.map-header h3{ font-size:24px; color:#1a2a4a; }
.map-header p{ color:#666; margin-top:5px; }

.map-container{
  height:400px;
  background:linear-gradient(135deg,#e8f8ee,#d4f5e3);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}

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

.map-placeholder{ text-align:center; color:#00a651; }
.map-placeholder span{ font-size:64px; margin-bottom:15px; display:block; }
.map-placeholder p{ font-weight:600; font-size:18px; }

.faq-quick{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:25px;
  margin-top:60px;
}

.faq-card{
  background:#fff;
  padding:32px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  border-left:4px solid #00a651;
}

.faq-card h4{ font-size:18px; margin-bottom:10px; color:#1a2a4a; }
.faq-card p{ color:#666; font-size:15px; line-height:1.7; }

.whatsapp-float{
  position:fixed;
  bottom:30px;
  right:30px;
  width:62px; height:62px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  color:#fff;
  box-shadow:0 8px 25px rgba(37,211,102,0.4);
  z-index:999;
  transition:0.3s;
  animation:pulse 2s infinite;
}

.whatsapp-float:hover{ transform:scale(1.1); box-shadow:0 12px 35px rgba(37,211,102,0.5); }

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,0.4);}
  70%{box-shadow:0 0 0 15px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/* ==========================================================================
   BLOG (index.php / single.php)
   ========================================================================== */

.blog-post-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  margin-bottom:30px;
}

.blog-post-card .entry-thumb img{ height:280px; object-fit:cover; width:100%; }
.blog-post-card .entry-body{ padding:28px; }
.blog-post-card .entry-body h2 a{ font-size:24px; color:#1a2a4a; }
.blog-post-card .entry-meta{ color:#888; font-size:13px; margin:8px 0 14px; }
.blog-post-card .entry-excerpt{ color:#666; line-height:1.7; }
.read-more{ color:#00a651; font-weight:600; display:inline-block; margin-top:14px; }

.single-post-content{
  background:#fff;
  border-radius:20px;
  padding:45px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  line-height:1.9;
}

.single-post-content h1{ font-size:38px; margin-bottom:15px; color:#1a2a4a; }
.single-post-content .entry-meta{ color:#888; margin-bottom:30px; }
.single-post-content img{ border-radius:14px; margin:20px 0; }

/* ==========================================================================
   404
   ========================================================================== */

.error-404{ text-align:center; padding:120px 0; }
.error-404 h1{ font-size:110px; color:#00a651; line-height:1; }
.error-404 p{ color:#666; font-size:19px; margin:20px 0 35px; }

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

footer.site-footer{
  background:#0b1320;
  color:#fff;
  padding-top:80px;
}

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

.footer-grid h3{ margin-bottom:20px; }
.footer-grid ul li{ margin-bottom:12px; color:#c7c7c7; }
.footer-grid ul li a{ color:#c7c7c7; }
.footer-grid ul li a:hover{ color:#00a651; }

.newsletter input{
  width:100%;
  padding:14px;
  border:none;
  border-radius:10px;
  margin-bottom:10px;
}

.newsletter button{
  width:100%;
  padding:14px;
  border:none;
  border-radius:10px;
  background:#00a651;
  color:#fff;
  font-weight:600;
  cursor:pointer;
}

.bottom-footer{
  border-top:1px solid rgba(255,255,255,0.1);
  padding:20px 0;
  text-align:center;
  color:#bbb;
  font-size:14px;
}

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

@media(max-width:900px){
  .hero h1{ font-size:44px; }
  .page-hero h1{ font-size:36px; }
  .page-hero.dark h1{ font-size:34px; }
  nav.primary-nav{ display:none; }
  .menu-toggle{ display:block; }
  nav.primary-nav.nav-open{
    display:block;
    position:absolute;
    top:100%; left:0; right:0;
    background:#fff;
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
    padding:20px;
  }
  nav.primary-nav.nav-open ul{ flex-direction:column; gap:16px; }
  .about-intro{ grid-template-columns:1fr; }
  .about-image-wrapper img{ height:320px; }
  .values-section{ padding:50px 30px; }
  .cta-section{ padding:45px 25px; }
  .cta-section .btn-secondary{ margin-left:0; margin-top:12px; }
  .bulk-grid{ grid-template-columns:1fr; }
  .bulk-section{ padding:40px 25px; }
  .featured-banner{ grid-template-columns:1fr; padding:40px; }
  .categories-grid{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .contact-form-wrapper{ padding:30px 25px; }
  .map-container{ height:280px; }
}
