/* =============================================
   BUMBLEBEE BABY GEAR RENTALS — STYLESHEET
   bumblebeerentals.ca
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* === VARIABLES === */
:root {
  --yellow:       #F5C518;
  --yellow-dark:  #D4A812;
  --yellow-light: #FEF9E7;
  --dark:         #1A1A2E;
  --dark-2:       #2D2D44;
  --text:         #374151;
  --text-light:   #6B7280;
  --white:        #FFFFFF;
  --off-white:    #F9FAFB;
  --border:       #E5E7EB;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.15);
  --radius:       14px;
  --radius-sm:    8px;
  --font:         'Poppins', sans-serif;
  --transition:   0.25s ease;
  --max-width:    1160px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === LAYOUT === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }

/* === TYPOGRAPHY === */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow-dark);
  background: var(--yellow-light);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}
.btn-primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover { background: var(--dark-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-lg { padding: 17px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-call { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
.btn-call:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,197,24,0.4); }
.btn-text { background: transparent; color: var(--dark); }
.btn-text:hover { background: rgba(255,255,255,0.2); }

/* === NAVIGATION === */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-text .brand { font-size: 16px; font-weight: 800; color: var(--dark); }
.nav-logo-text .tagline { font-size: 11px; color: var(--text-light); font-weight: 400; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); background: var(--yellow-light); }
.nav-ctas { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.mobile-menu-ctas .btn { justify-content: center; }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2D2D44 50%, #1A1A2E 100%);
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,197,24,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title span { color: var(--yellow); }
.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 500;
}
.hero-trust-item .dot {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-image-col {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-frame {
  width: 100%;
  max-width: 460px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #2D2D44, #374151);
  position: relative;
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--yellow);
  color: var(--dark);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
}
.hero-badge .big { font-size: 22px; display: block; }

/* === TRUST BAR === */
.trust-bar {
  background: var(--yellow);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.trust-icon { font-size: 20px; }

/* === PRODUCT CARDS === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--yellow); }
.product-card-image {
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  position: relative;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.03); }
.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}
.product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.product-card-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.product-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.product-price span { font-size: 14px; font-weight: 400; color: var(--text-light); }
.product-features {
  margin-bottom: 20px;
}
.product-features li {
  font-size: 13px;
  color: var(--text);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-features li::before {
  content: '✓';
  color: var(--yellow-dark);
  font-weight: 700;
  flex-shrink: 0;
}

/* === ITEM GRID (for product detail pages) === */
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.item-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.item-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.item-card-image {
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--off-white), #e8e8e8);
  position: relative;
}
.item-card-image img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.item-card-body { padding: 28px; }
.item-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--yellow-light);
  color: var(--yellow-dark);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.item-card-title { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.item-card-desc { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.item-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--yellow-light);
  border-radius: var(--radius-sm);
}
.item-price { font-size: 32px; font-weight: 800; color: var(--dark); }
.item-price-label { font-size: 14px; color: var(--text-light); }
.item-discount { font-size: 13px; color: var(--yellow-dark); font-weight: 600; margin-left: auto; }
.item-features { margin-bottom: 24px; }
.item-features li { font-size: 14px; color: var(--text); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.item-features li:last-child { border-bottom: none; }
.item-features li::before { content: '✓'; color: var(--yellow-dark); font-weight: 700; font-size: 15px; }

/* === WHY CHOOSE US === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-card:hover { border-color: var(--yellow); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
  width: 64px;
  height: 64px;
  background: var(--yellow-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}
.why-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* === HOW IT WORKS === */
.how-section { background: var(--dark); }
.how-section .section-label { background: rgba(245,197,24,0.15); color: var(--yellow); }
.how-section .section-title { color: var(--white); }
.how-section .section-subtitle { color: rgba(255,255,255,0.65); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--yellow), rgba(245,197,24,0.2));
}
.step { text-align: center; position: relative; }
.step-num {
  width: 64px;
  height: 64px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 22px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* === OUR STORY === */
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-image {
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  background: linear-gradient(135deg, var(--yellow-light), #e8e4d0);
  position: relative;
}
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-label { margin-bottom: 16px; }
.story-text { font-size: 16px; color: var(--text); line-height: 1.8; margin-bottom: 20px; }
.story-highlight {
  background: var(--yellow-light);
  border-left: 4px solid var(--yellow);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-size: 16px;
  font-style: italic;
  color: var(--dark);
  font-weight: 500;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--yellow) 0%, #F0B800 100%);
  padding: 64px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner-text .title { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.cta-banner-text .subtitle { font-size: 16px; color: rgba(26,26,46,0.7); }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* === SERVICE AREA === */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 40px;
}
.area-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.area-chip:hover { border-color: var(--yellow); background: var(--yellow-light); color: var(--dark); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-label { margin-bottom: 12px; display: inline-block; }
.page-hero .section-label { background: rgba(245,197,24,0.15); color: var(--yellow); }
.page-hero-title { font-size: clamp(30px, 5vw, 48px); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.page-hero-subtitle { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 560px; line-height: 1.7; }

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: var(--yellow); font-weight: 500; }

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info-title { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.contact-info-sub { font-size: 16px; color: var(--text-light); margin-bottom: 36px; }
.contact-action-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--white);
  margin-bottom: 20px;
}
.contact-action-card.yellow {
  background: var(--yellow);
  color: var(--dark);
}
.contact-action-icon { font-size: 32px; margin-bottom: 12px; }
.contact-action-title { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.contact-action-sub { font-size: 14px; opacity: 0.75; margin-bottom: 20px; }
.contact-details { margin-top: 32px; }
.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail-row:last-child { border-bottom: none; }
.contact-detail-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-detail-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; }
.contact-detail-value { font-size: 15px; color: var(--dark); font-weight: 500; }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-title { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,197,24,0.15); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 16px; font-size: 16px; font-weight: 700; background: var(--yellow); border: none; border-radius: 50px; cursor: pointer; font-family: var(--font); color: var(--dark); transition: all var(--transition); }
.form-submit:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,197,24,0.4); }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--yellow); }
.stars { color: var(--yellow); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--yellow-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.author-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.author-location { font-size: 12px; color: var(--text-light); }

/* === DISCOUNT BANNER === */
.discount-banner {
  background: var(--yellow-light);
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.discount-icon { font-size: 28px; }
.discount-text strong { font-size: 16px; font-weight: 700; color: var(--dark); display: block; }
.discount-text span { font-size: 14px; color: var(--text-light); }

/* === FOOTER === */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-logo .emoji { font-size: 28px; }
.footer-brand-logo .name { font-size: 18px; font-weight: 800; color: var(--white); }
.footer-brand-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
  cursor: pointer;
}
.social-btn:hover { background: var(--yellow); color: var(--dark); }
.footer-heading { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white); margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--yellow); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 14px; }
.footer-contact-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--yellow); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; }
  .nav-ctas { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-col { display: none; }
  .hero { min-height: auto; padding: 60px 0; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .story-inner { grid-template-columns: 1fr; }
  .story-image { height: 300px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 20px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .items-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .contact-form-card { padding: 24px; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === UTILITIES === */
.bg-off-white { background: var(--off-white); }
.bg-dark { background: var(--dark); }
.mt-0 { margin-top: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
