/*
Theme Name: Arusha Theme
Theme URI: https://arushagroupofcompany.in
Author: Dhiraj - Arusha Group of Company
Author URI: https://arushagroupofcompany.in
Description: Custom theme for Arusha Group of Company — FMCG Division, Lucknow
Version: 1.0
License: Private
Tags: custom, fmcg, orange, business
*/

/* ═══════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════ */
:root {
  --orange:       #e85d04;
  --orange-dark:  #c44b00;
  --orange-light: #ff7b2e;
  --orange-pale:  #fff3ed;
  --orange-glow:  rgba(232,93,4,0.12);
  --white:        #ffffff;
  --off-white:    #fdfaf7;
  --text:         #1a1208;
  --text-mid:     #4a3728;
  --text-muted:   #8a7060;
  --border:       rgba(232,93,4,0.15);
  --shadow-sm:    0 2px 12px rgba(232,93,4,0.08);
  --shadow-md:    0 8px 32px rgba(232,93,4,0.14);
  --shadow-lg:    0 20px 60px rgba(232,93,4,0.18);
  --radius:       12px;
  --radius-lg:    20px;
  --container:    1200px;
  --nav-h:        78px;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }

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

/* ═══════════════════════════════════════
   TOP BAR
═══════════════════════════════════════ */
.site-topbar {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  padding: 8px 0;
  letter-spacing: 0.02em;
}
.site-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-right a { color: var(--orange-light); font-weight: 600; }
.topbar-right a:hover { color: #fff; }

/* ═══════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 24px;
}

/* Brand */
.site-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}
.brand-logo {
  width: 50px; height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 20px; color: #fff;
  box-shadow: 0 4px 14px rgba(232,93,4,0.35);
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}
.brand-info .brand-name {
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  line-height: 1.2;
}
.brand-info .brand-tagline {
  font-size: 11px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Primary Nav */
.primary-nav { flex: 1; display: flex; justify-content: center; }
.primary-nav ul { display: flex; gap: 4px; }
.primary-nav a {
  display: block;
  padding: 9px 15px;
  border-radius: 8px;
  color: var(--text-mid);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  position: relative;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 15px; right: 15px;
  height: 2px; border-radius: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.primary-nav a:hover, .primary-nav a.current-menu-item { color: var(--orange); }
.primary-nav a:hover::after, .primary-nav a.current-menu-item::after { transform: scaleX(1); }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; margin-left: auto; }
.btn-phone {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px; border-radius: 9px;
  background: var(--orange-pale);
  border: 1px solid var(--border);
  color: var(--orange-dark);
  font-weight: 700; font-size: 14px;
  transition: all 0.2s;
}
.btn-phone:hover { background: var(--orange); color: #fff; }
.btn-contact {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: 9px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff; font-weight: 700; font-size: 14px;
  box-shadow: 0 4px 14px rgba(232,93,4,0.3);
  transition: all 0.2s;
}
.btn-contact:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); color: #fff; }

.hamburger {
  display: none;
  background: var(--orange-pale);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--orange);
  font-size: 20px;
  padding: 9px 12px;
  cursor: pointer;
}

/* ═══════════════════════════════════════
   MOBILE DRAWER
═══════════════════════════════════════ */
.drawer-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(26,18,8,0.5); z-index: 1100;
  backdrop-filter: blur(3px);
}
.drawer-overlay.open { display: block; }
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 310px; max-width: 92vw;
  background: var(--white);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  border-left: 3px solid var(--orange);
  box-shadow: var(--shadow-lg);
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--orange-pale);
  background: var(--orange-pale);
}
.drawer-close {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; color: var(--orange);
  font-size: 18px; padding: 7px 11px; cursor: pointer;
}
.drawer-nav { padding: 12px; flex: 1; }
.drawer-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 10px;
  color: var(--text-mid); font-weight: 600; font-size: 15px;
  transition: all 0.2s; margin-bottom: 3px;
  border-left: 3px solid transparent;
}
.drawer-nav a:hover { background: var(--orange-pale); color: var(--orange); border-left-color: var(--orange); }
.drawer-footer {
  padding: 16px; border-top: 1px solid var(--orange-pale);
  display: flex; flex-direction: column; gap: 10px;
}
.drawer-footer .btn-contact, .drawer-footer .btn-phone { justify-content: center; width: 100%; padding: 13px; font-size: 15px; }

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--text) 0%, #3a1a08 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 70% 50%, rgba(232,93,4,0.25), transparent);
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(232,93,4,0.08);
  right: -100px; top: -200px;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,93,4,0.15); border: 1px solid rgba(232,93,4,0.3);
  color: var(--orange-light); font-size: 13px; font-weight: 700;
  padding: 6px 16px; border-radius: 99px; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900; color: #fff; line-height: 1.15;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero h1 span { color: var(--orange-light); }
.hero-desc { color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-btns .btn-contact { font-size: 16px; padding: 14px 28px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85); font-weight: 600; font-size: 16px;
  transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }

.hero-visual {
  display: flex; flex-direction: column; gap: 14px;
}
.hero-card {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
  padding: 22px 24px; display: flex; align-items: center; gap: 18px;
}
.hero-card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  flex-shrink: 0;
}
.hero-card h3 { color: #fff; font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.hero-card p { color: rgba(255,255,255,0.6); font-size: 13px; }

/* ═══════════════════════════════════════
   SECTIONS SHARED
═══════════════════════════════════════ */
.section { padding: 80px 0; }
.section-alt { background: var(--orange-pale); }
.section-dark { background: var(--text); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--orange); font-weight: 700; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label::before { content: ''; width: 24px; height: 3px; background: var(--orange); border-radius: 2px; }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900; color: var(--text);
  line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.02em;
}
.section-dark .section-title { color: #fff; }
.section-sub { color: var(--text-muted); font-size: 17px; line-height: 1.7; max-width: 560px; margin-bottom: 48px; }

/* Cards grid */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--orange-pale); display: flex;
  align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.card h3 { font-weight: 800; font-size: 18px; color: var(--text); margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 14px; line-height: 1.65; }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.stat-box {
  text-align: center; padding: 28px 20px;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.stat-number { font-size: 2.4rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

/* ═══════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════ */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all 0.25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-thumb {
  height: 180px; background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center; font-size: 60px;
}
.product-info { padding: 18px; }
.product-info h3 { font-weight: 800; font-size: 16px; margin-bottom: 6px; }
.product-info p { color: var(--text-muted); font-size: 13px; }
.product-tag {
  display: inline-block; margin-top: 10px;
  background: var(--orange-pale); color: var(--orange);
  font-size: 12px; font-weight: 700; padding: 4px 10px;
  border-radius: 6px; letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px;
}
.contact-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--orange-pale); display: flex; align-items: center;
  justify-content: center; font-size: 20px; flex-shrink: 0;
}
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; color: var(--text-mid); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border-radius: 9px;
  border: 1.5px solid var(--border); background: var(--off-white);
  font-size: 15px; color: var(--text); font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,93,4,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff; border: none; border-radius: 9px;
  font-size: 16px; font-weight: 700; cursor: pointer;
  box-shadow: 0 4px 14px rgba(232,93,4,0.3);
  transition: all 0.2s;
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ═══════════════════════════════════════
   BLOG
═══════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all 0.25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-thumb {
  height: 200px; background: linear-gradient(135deg, var(--orange-pale), #ffe8d6);
  display: flex; align-items: center; justify-content: center; font-size: 56px;
}
.blog-body { padding: 22px; }
.blog-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; display: flex; gap: 12px; }
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-body h3 { font-weight: 800; font-size: 18px; color: var(--text); margin-bottom: 10px; line-height: 1.3; }
.blog-body p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.read-more { color: var(--orange); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.read-more:hover { gap: 10px; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .brand-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.75; max-width: 280px; }
.footer-col h4 { color: #fff; font-weight: 700; font-size: 15px; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.footer-col a:hover { color: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: var(--orange-light); }
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 15px; transition: all 0.2s;
}
.social-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 64px 0; color: #fff; text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 12px; color: #fff; }
.page-hero p { font-size: 18px; opacity: 0.85; }
.breadcrumb { font-size: 13px; margin-bottom: 16px; opacity: 0.7; }
.breadcrumb a { color: rgba(255,255,255,0.8); }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.team-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm); text-align: center; padding-bottom: 24px;
  transition: all 0.25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  height: 140px; background: linear-gradient(135deg, var(--orange-pale), #ffe8d6);
  display: flex; align-items: center; justify-content: center; font-size: 56px;
  margin-bottom: 16px;
}
.team-card h3 { font-weight: 800; font-size: 17px; margin-bottom: 4px; }
.team-card span { color: var(--orange); font-size: 13px; font-weight: 600; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 960px) {
  .primary-nav { display: none; }
  .hamburger { display: inline-flex; align-items: center; }
  .btn-phone { display: none; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .site-topbar .topbar-right { display: none; }
  .container { padding: 0 16px; }
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.55s ease both; }
.fade-up-2 { animation: fadeUp 0.55s 0.1s ease both; }
.fade-up-3 { animation: fadeUp 0.55s 0.2s ease both; }

a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(232,93,4,0.4);
  outline-offset: 3px; border-radius: 8px;
}

/* WordPress alignment helpers */
.wp-block-image { margin: 24px 0; }
.entry-content h2 { font-size: 1.8rem; font-weight: 800; color: var(--text); margin: 32px 0 14px; }
.entry-content p { color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
