/* ================================================================
   M & M Storage Solutions — Main Stylesheet
   Colours: Red #CC1B1B · Black #1A1A1A · White #FFFFFF
   ================================================================ */

/* ---------- Reset & Variables ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:        #CC1B1B;   /* Red  — icons, trust bar, labels, accents   */
  --primary-dark:   #A01515;   /* Dark red                                    */
  --primary-light:  #D93030;   /* Lighter red                                 */
  --accent:         #1A1A1A;   /* Black — nav, hero, unit headers, CTA, footer */
  --accent-dark:    #0D0D0D;   /* Near-black                                  */
  --accent-light:   #2D2D2D;   /* Dark grey                                   */
  --text:           #2D2D2D;
  --text-light:     #6B7280;
  --bg:             #F4F7FB;
  --white:          #FFFFFF;
  --border:         #E5E7EB;
  --green:          #16A34A;
  --wa-green:       #25D366;
  --wa-dark:        #1ebe5a;
  --shadow-sm:      0 1px 4px rgba(0,0,0,.07);
  --shadow:         0 4px 22px rgba(0,0,0,.09);
  --shadow-lg:      0 10px 40px rgba(0,0,0,.13);
  --radius:         8px;
  --radius-lg:      16px;
  --ease:           .25s ease;
  --font:           'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

html  { scroll-behavior: smooth; }
body  { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

/* ---------- Typography ----------------------------------------- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--accent); }
h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
h2 { font-size: clamp(1.55rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.45rem); }
p  { color: var(--text-light); }

.section-label {
  font-size: .8rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--primary);
  display: block; margin-bottom: .5rem;
}
.section-title    { margin-bottom: .6rem; }
.section-subtitle {
  color: var(--text-light); font-size: 1.05rem;
  max-width: 620px; margin: 0 auto 3rem;
}
.text-center { text-align: center; }

/* ---------- Layout --------------------------------------------- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 5rem 0; }
.section-alt { background: var(--bg); }

/* ---------- Buttons -------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.8rem; border-radius: var(--radius);
  font-family: var(--font); font-weight: 600; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer;
  transition: var(--ease); text-decoration: none; white-space: nowrap;
}
.btn-sm   { padding: .6rem 1.2rem; font-size: .875rem; }
.btn-lg   { padding: 1.1rem 2.2rem; font-size: 1.1rem; }
.btn-block { width: 100%; justify-content: center; }

/* Red primary button */
.btn-primary  { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204,27,27,.4);
}

/* White outline (on dark backgrounds) */
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--accent); }

/* WhatsApp green */
.btn-whatsapp { background: var(--wa-green); color: var(--white); border-color: var(--wa-green); }
.btn-whatsapp:hover {
  background: var(--wa-dark); border-color: var(--wa-dark);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4);
}

/* Call / black button */
.btn-call { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-call:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); }

/* Email / dark button */
.btn-email { background: #1A1A1A; color: var(--white); border-color: #1A1A1A; }
.btn-email:hover { background: #333333; border-color: #333333; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.3); }

/* Facebook button (nav — 36px circle) */
.btn-facebook-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #1877F2; color: #fff;
  flex-shrink: 0; align-self: flex-start;
  transition: var(--ease); text-decoration: none;
}
.btn-facebook-icon:hover { background: #1666d8; transform: translateY(-2px); }

/* Facebook button (wider, with text — footer/contact/about) */
.btn-facebook { background: #1877F2; color: var(--white); border-color: #1877F2; }
.btn-facebook:hover {
  background: #1666d8; border-color: #1666d8;
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(24,119,242,.4);
}

/* ---------- Navigation (White) --------------------------------- */
.navbar {
  position: sticky; top: 0; z-index: 990;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  background: transparent;
}

/* ---------- Logo — clean, no background artefacts --------------- */
img.logo, .logo img, nav img {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

/* Keep text styles as fallback if logo.png fails to render */
.nav-logo-name {
  font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: -.3px;
}
.nav-logo-name span { color: var(--primary); }
.nav-logo-sub {
  font-size: .65rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.4); font-weight: 500;
}
.nav-menu {
  display: flex; align-items: center; gap: 1.75rem;
}
.nav-links { display: flex; gap: .15rem; }
.nav-links a {
  padding: .45rem .85rem; border-radius: var(--radius);
  color: var(--accent); font-size: .925rem; font-weight: 500;
  transition: var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary); background: rgba(204,27,27,.08);
}
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-phone {
  color: var(--accent); font-weight: 700; font-size: .9rem;          /* Black phone on white nav */
  display: flex; align-items: center; gap: .35rem; transition: var(--ease);
}
.nav-phone:hover { color: var(--primary); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: .5rem;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--accent); border-radius: 2px; transition: var(--ease);
}

/* ---------- Trust Bar (Red) ------------------------------------ */
.trust-bar { background: var(--primary); padding: .7rem 0; }
.trust-bar-inner {
  display: flex; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .45rem;
  color: var(--white); font-size: .85rem; font-weight: 600;
}
.trust-icon { font-size: 1rem; }

/* ---------- Hero (Black) --------------------------------------- */
.hero {
  background: linear-gradient(140deg, var(--accent-dark) 0%, var(--accent) 60%, var(--accent-light) 100%);
  padding: 5.5rem 0 4.5rem; position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(204,27,27,.2); border: 1px solid rgba(204,27,27,.5);
  color: rgba(255,255,255,.9); padding: .4rem 1rem;
  border-radius: 50px; font-size: .82rem; font-weight: 700;
  letter-spacing: .5px; margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--primary); font-style: normal; }  /* Red accent in headline */
.hero-lead {
  color: rgba(255,255,255,.8); font-size: 1.1rem;
  margin-bottom: 2.5rem; max-width: 550px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.hero-stat-num {
  font-size: 2rem; font-weight: 800;
  color: var(--primary); line-height: 1;  /* Red stat numbers */
}
.hero-stat-lbl {
  font-size: .78rem; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .5px; margin-top: .2rem;
}

/* ---------- Feature Cards -------------------------------------- */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  text-align: center; padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg); background: var(--white);
  box-shadow: var(--shadow); transition: var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light)); /* Red icons */
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; font-size: 1.9rem;
}
.feature-card h3 { margin-bottom: .7rem; }
.feature-card p  { font-size: .95rem; }

/* ---------- What We Store Tags --------------------------------- */
.store-tags {
  display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: center; margin-top: 1.75rem;
}
.store-tag {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 50px; padding: .55rem 1.25rem;
  font-size: .9rem; font-weight: 600; color: var(--text);
  box-shadow: var(--shadow-sm); transition: var(--ease);
  display: inline-flex; align-items: center; gap: .35rem;
}
.store-tag:hover { border-color: var(--primary); color: var(--primary); }

/* ---------- Unit / Pricing Cards ------------------------------- */
.units-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.75rem;
}
.unit-card {
  border-radius: var(--radius-lg); background: var(--white);
  box-shadow: var(--shadow); overflow: hidden;
  display: flex; flex-direction: column;
  border: 2px solid transparent; transition: var(--ease);
  position: relative;
}
.unit-card:hover  { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.unit-card.popular { border-color: var(--primary); }
.popular-badge {
  position: absolute; top: 0; right: 0;
  background: var(--primary); color: var(--white); /* Red badge */
  font-size: .72rem; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; padding: .35rem 1rem;
  border-radius: 0 var(--radius-lg) 0 var(--radius);
}

/* Black unit header with red price */
.unit-header {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  padding: 1.75rem 1.5rem;
}
.unit-size {
  font-size: 1.35rem; font-weight: 800; color: var(--white); margin-bottom: .2rem;
}
.unit-area { font-size: .875rem; color: rgba(255,255,255,.6); }
.unit-price {
  font-size: 2.1rem; font-weight: 800; color: var(--primary);  /* Red price */
  margin-top: .75rem; line-height: 1;
}
.unit-price small {
  font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.6);
}
.unit-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.unit-type-badge {
  display: inline-block; background: var(--bg); border: 1px solid var(--border);
  border-radius: 50px; padding: .25rem .9rem;
  font-size: .78rem; font-weight: 600; color: var(--text-light);
  margin-bottom: .75rem;
}
.unit-body h4 {
  font-size: .8rem; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-light); margin-bottom: .7rem;
}
.fits-list { display: flex; flex-direction: column; gap: .4rem; flex: 1; margin-bottom: 1.25rem; }
.fits-list li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .9rem; color: var(--text-light);
}
.fits-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-note {
  font-size: .78rem; color: var(--text-light); line-height: 1.5;
  border-top: 1px solid var(--border); padding-top: .85rem; margin-bottom: 1rem;
}
.pricing-note strong { color: var(--primary); }

/* ---------- Dual pricing (electricity options) ------------------ */
.unit-price-opts {
  margin-top: .75rem;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: .6rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}
.price-row-lbl {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  flex-shrink: 0;
}
.price-row-val {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  white-space: nowrap;
}
.price-row-val small {
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
}
.price-row-elec .price-row-lbl {
  color: rgba(255,230,100,.8);
}

/* ---------- CTA Section (Black) -------------------------------- */
.cta-section {
  background: linear-gradient(140deg, var(--accent-dark), var(--accent));
  padding: 5rem 0; text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: .9rem; }
.cta-section p  { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 2.5rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---------- Why Choose Us ------------------------------------- */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.why-card {
  padding: 1.75rem 1.5rem; border-radius: var(--radius);
  background: var(--white); box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary); transition: var(--ease); /* Red left border */
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-icon { font-size: 1.8rem; margin-bottom: .75rem; }
.why-card h4 { margin-bottom: .4rem; font-size: 1rem; }
.why-card p  { font-size: .9rem; }

/* ---------- About --------------------------------------------- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--accent), var(--accent-light)); /* Black visual */
  border-radius: var(--radius-lg); aspect-ratio: 4/3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .75rem;
}
.about-visual-icon { font-size: 5rem; }
.about-visual p    { color: rgba(255,255,255,.7); font-size: .9rem; }
.about-content h2   { margin-bottom: 1.25rem; }
.about-content p    { margin-bottom: 1.25rem; line-height: 1.8; }
.about-badges { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.about-badge {
  display: flex; align-items: center; gap: .4rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 50px; padding: .45rem 1rem;
  font-size: .875rem; font-weight: 600; color: var(--text);
}

/* ---------- Contact Page -------------------------------------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item  { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon {
  width: 50px; height: 50px; border-radius: var(--radius);
  background: var(--primary); display: flex; align-items: center; /* Red icon bg */
  justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.ci-body h4 {
  font-size: .75rem; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-light); font-weight: 600; margin-bottom: .25rem;
}
.ci-body a, .ci-body p {
  font-size: .975rem; color: var(--text); font-weight: 500; transition: var(--ease);
}
.ci-body a:hover { color: var(--primary); }
.hours-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  max-width: 400px;
  margin-top: .5rem;
}
.hours-day {
  font-weight: 500;
  color: #1A1A1A;
  font-size: .9rem;
  padding: 4px 0;
}
.hours-time {
  font-weight: 500;
  color: #1A1A1A;
  font-size: .9rem;
  padding: 4px 0;
}
.hours-day.hours-main,
.hours-time.hours-main {
  color: #1A1A1A;
  font-weight: 600;
}
.hours-time.closed {
  color: #1A1A1A;
}

/* ---------- Form Card ------------------------------------------ */
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 2rem;
}
.form-card h3 { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: .875rem; font-weight: 600;
  color: var(--text); margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font); font-size: .95rem; color: var(--text);
  background: var(--white); transition: var(--ease);
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(204,27,27,.1);  /* Red focus ring */
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .82rem; color: var(--text-light); margin-top: .4rem; }

/* ---------- Map ------------------------------------------------ */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-top: 3rem; }
.map-wrap iframe { width: 100%; height: 380px; border: none; display: block; }

.map-container {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-top: 3rem;
}
.map-container iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}

/* ---------- FAQ Accordion -------------------------------------- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: .9rem; }
.faq-item { border-radius: var(--radius); border: 1.5px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-btn {
  width: 100%; text-align: left; padding: 1.2rem 1.5rem;
  background: var(--white); border: none; cursor: pointer;
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  color: var(--accent); display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; transition: var(--ease);
}
.faq-btn:hover   { background: var(--bg); }
.faq-btn.is-open { background: var(--primary); color: var(--white); } /* Red open state */
.faq-btn .faq-chevron { font-size: 1.1rem; transition: transform var(--ease); flex-shrink: 0; }
.faq-btn.is-open .faq-chevron { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
  background: var(--bg); padding: 0 1.5rem;
}
.faq-answer.is-open { max-height: 400px; padding: 1.25rem 1.5rem; }
.faq-answer p { font-size: .95rem; line-height: 1.75; }

/* ---------- Page Hero (Black - inner pages) -------------------- */
.page-hero {
  background: linear-gradient(140deg, var(--accent-dark), var(--accent));
  padding: 4rem 0 3.25rem; text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p   { color: rgba(255,255,255,.75); font-size: 1.05rem; }
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  justify-content: center; font-size: .82rem; margin-bottom: 1.25rem;
}
.breadcrumb a    { color: rgba(255,255,255,.55); transition: var(--ease); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb sep  { color: rgba(255,255,255,.3); }
.breadcrumb .current { color: var(--primary); font-weight: 600; }  /* Red current page */

/* ---------- Testimonials -------------------------------------- */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 1.75rem; transition: var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.t-stars { color: #FACC15; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 1px; }
.t-text  { font-size: .95rem; line-height: 1.7; margin-bottom: 1.25rem; }
.t-author { display: flex; align-items: center; gap: .75rem; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light)); /* Red avatar */
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.t-name   { font-size: .9rem; font-weight: 700; color: var(--accent); }
.t-loc    { font-size: .8rem; color: var(--text-light); }

/* ---------- Floating Facebook Button (left side) --------------- */
.fab-fb {
  position: fixed; bottom: 1.75rem; left: 1.75rem; z-index: 1000;
  width: 58px; height: 58px; border-radius: 50%;
  background: #1877F2; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(24,119,242,.5);
  transition: var(--ease); text-decoration: none;
}
.fab-fb:hover {
  background: #1666d8; transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(24,119,242,.6);
}

/* ---------- Floating WhatsApp Button (Green - stays) ----------- */
.fab-wa {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 1000;
  display: flex; align-items: center; gap: .75rem;
  background: var(--wa-green); color: var(--white);
  padding: .9rem 1.5rem; border-radius: 50px;
  font-weight: 700; font-size: .95rem;
  box-shadow: 0 4px 22px rgba(37,211,102,.5);
  transition: var(--ease); animation: waPulse 2.5s infinite;
}
.fab-wa:hover {
  background: var(--wa-dark); transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
}
.fab-icon { font-size: 1.35rem; flex-shrink: 0; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 22px rgba(37,211,102,.5); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.8); }
}

/* ---------- Footer (White) ------------------------------------ */
.footer {
  background: var(--white);
  border-top: 3px solid var(--primary);   /* Red top border separates footer from content */
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
.footer-logo-img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 1rem;
  background: transparent;
}
.footer-brand-name {
  font-size: 1.3rem; font-weight: 800; color: var(--accent); margin-bottom: .15rem;
}
.footer-brand-name span { color: var(--primary); }  /* Red M&M accent stays */
.footer-brand-sub { font-size: .7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-light); margin-bottom: 1rem; }
.footer-brand p    { font-size: .9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-col h5 {
  font-size: .78rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-light); font-weight: 600; margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .9rem; color: var(--accent); transition: var(--ease);
}
.footer-col ul li a:hover { color: var(--primary); }  /* Red on hover */
.footer-col p   { font-size: .9rem; color: var(--accent); margin-bottom: .45rem; }
.footer-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 1.5rem; }
.footer-bottom  {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { font-size: .82rem; color: var(--text-light); }
.footer-bottom a { color: var(--primary); }  /* Red link stays */

/* ---------- Comparison Table ---------------------------------- */
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
}
.compare-table thead tr { background: var(--accent); color: var(--white); }
.compare-table thead th { padding: 1rem 1.25rem; text-align: left; font-size: .9rem; color: var(--white); }
.compare-table thead th:not(:first-child) { text-align: center; }
.compare-table tbody tr { border-bottom: 1px solid var(--border); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table td { padding: 1rem 1.25rem; }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table .unit-name { font-weight: 600; color: var(--accent); }
.compare-table .unit-highlight { font-weight: 700; color: var(--primary); }
.compare-table .pop-row { background: rgba(204,27,27,.04); }

/* ---------- M&M brand name red class -------------------------- */
.mm { color: var(--primary); font-weight: 700; }

/* ---------- Logo Strip (white section above hero on homepage) -- */
.logo-strip {
  background: #FFFFFF;
  text-align: center;
  padding: 40px 20px;
}
.logo-strip img,
.hero-logo {
  width: 380px;
  max-width: 100%;
  background: transparent !important;
  display: block;
  margin: 0 auto;
  height: auto;
}

/* ---------- About Logo (Our Story section) --------------------- */
.about-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
}
.about-logo,
.about-section img.logo {
  width: 320px;
  max-width: 100%;
  background: transparent !important;
  padding: 20px;
  display: block;
  margin: 0 auto;
  height: auto;
}

/* ---------- Language Toggle ------------------------------------ */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid #CC1B1B;
  border-radius: 20px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.lang-toggle button {
  padding: 4px 12px;
  border: none;
  cursor: pointer;
  background: white;
  color: #1A1A1A;
  transition: all 0.2s;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}
.lang-toggle button.active {
  background: #CC1B1B;
  color: white;
}
.lang-toggle button:hover:not(.active) { background: #f9f0f0; }

/* ---------- Access Hours Notice -------------------------------- */
.access-notice {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  background: #fff5f5;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px;
  margin-top: 1rem;
  font-size: .85rem;
  color: #1A1A1A;
  line-height: 1.6;
}
.access-notice .notice-icon { font-size: 1rem; flex-shrink: 0; margin-top: .05rem; }
.access-notice p { color: #1A1A1A; margin: 0; font-size: .85rem; }

/* ---------- Security Badge ------------------------------------- */
.security-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  padding: .45rem 1.25rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .3px;
}

/* ================================================================
   NAV — desktop vs mobile text variant spans
   ================================================================ */
.nav-mobile { display: none; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; aspect-ratio: 16/7; }
  .about-logo-wrap { order: -1; }   /* Logo above text when stacked */
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-menu {
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white); flex-direction: column; gap: .25rem;   /* White dropdown matches white nav */
    padding: 1rem 1.25rem 1.5rem; box-shadow: 0 10px 20px rgba(0,0,0,.12);
    border-top: 1px solid var(--border); z-index: 988;
  }
  .nav-menu.is-open { display: flex; }
  .nav-links { flex-direction: column; }
  .nav-links a { padding: .65rem 1rem; font-size: 1rem; }
  .nav-actions {
    display: flex; flex-direction: column; align-items: stretch;
    gap: .75rem; padding-top: 1rem;
    border-top: 1px solid var(--border); margin-top: .5rem;
  }
  .nav-actions .btn { justify-content: center; }

  .nav-logo-img { height: 45px; }
  .lang-toggle { align-self: flex-start; font-size: 12px; }
  .lang-toggle button { padding: 4px 10px; font-size: 12px; }
  .logo-strip { padding: 25px 20px; }
  .hero-logo { width: 260px; }                      /* 260px on mobile */
  .about-logo-wrap { order: -1; padding: .5rem; }   /* Logo stacks ABOVE text on mobile */
  .about-logo { width: 220px; padding: 15px; }      /* 220px on mobile */
  .hours-table { gap: 6px 16px; max-width: 100%; }  /* Full width on small screens */

  .fab-wa .fab-label { display: none; }
  .fab-wa { padding: 1rem; width: 58px; height: 58px; border-radius: 50%; justify-content: center; }

  /* Show longer nav text inside the mobile dropdown */
  .nav-desktop { display: none; }
  .nav-mobile  { display: inline; }

  .hero { padding: 3.5rem 0 3rem; }
  .hero-btns { flex-direction: column; max-width: 280px; }
  .hero-stats { gap: 1.75rem; }
  .hero::after { height: 40px; }

  .section { padding: 3.5rem 0; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { gap: 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 500px) {
  .units-grid { grid-template-columns: 1fr; }
  .why-grid   { grid-template-columns: 1fr; }
  .store-tags { gap: .5rem; }
}

/* ================================================================
   GALLERY PAGE
   ================================================================ */
.gallery-section { margin-bottom: 2.5rem; }

.gallery-section-header {
  display: flex; align-items: center; gap: .85rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--primary);
}
.gallery-section-title {
  font-size: 1.35rem; font-weight: 700;
  color: var(--primary); line-height: 1.2; margin: 0;
}
.gallery-count-badge {
  background: var(--primary); color: var(--white);
  border-radius: 50px; padding: .2rem .85rem;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .3px; white-space: nowrap; flex-shrink: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  height: 250px; overflow: hidden;
  border-radius: 8px; cursor: pointer;
  background: var(--bg);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .3s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

/* ---------- Lightbox ------------------------------------------- */
.lightbox-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.92); z-index: 2000;
  align-items: center; justify-content: center;
}
.lightbox-overlay.is-open { display: flex; }

.lightbox-content {
  display: flex; flex-direction: column; align-items: center;
  max-width: 90vw; max-height: 90vh;
}
.lightbox-img {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain; border-radius: 4px;
  display: block; user-select: none;
}
.lightbox-caption {
  color: rgba(255,255,255,.7); font-size: .85rem;
  margin-top: .85rem; text-align: center;
  font-weight: 600; letter-spacing: .3px;
}
.lightbox-close {
  position: fixed; top: 1rem; right: 1rem;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.35);
  color: #fff; width: 44px; height: 44px;
  border-radius: 50%; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 2001; font-family: inherit;
}
.lightbox-close:hover { background: rgba(255,255,255,.28); }

.lightbox-arrow {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.35);
  color: #fff; width: 52px; height: 52px;
  border-radius: 50%; font-size: 2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 2001;
  font-family: inherit; line-height: 1;
}
.lightbox-arrow:hover { background: rgba(255,255,255,.28); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

@media (max-width: 768px) {
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-item  { height: 200px; }
  .lightbox-arrow { width: 40px; height: 40px; font-size: 1.5rem; }
  .lightbox-prev { left: .4rem; }
  .lightbox-next { right: .4rem; }
}
@media (max-width: 500px) {
  .gallery-grid  { grid-template-columns: 1fr; }
  .lightbox-arrow { display: none; }
}

/* ---------- Language Selection Popup ----------------------------- */
.lang-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lang-popup-overlay.visible {
  opacity: 1;
}
.lang-popup-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  width: 380px;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.lang-popup-logo {
  width: 180px;
  margin: 0 auto 20px;
  display: block;
}
.lang-popup-title {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 8px;
  line-height: 1.4;
}
.lang-popup-subtitle {
  font-size: 14px;
  color: #666666;
  margin-bottom: 30px;
  line-height: 1.4;
}
.lang-popup-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.lang-popup-btn {
  flex: 1;
  height: 55px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
  color: white;
}
.lang-popup-btn.english {
  background: #CC1B1B;
}
.lang-popup-btn.english:hover {
  background: #aa1515;
}
.lang-popup-btn.afrikaans {
  background: #1A1A1A;
}
.lang-popup-btn.afrikaans:hover {
  background: #333333;
}

/* ================================================================
   SOCIAL BAR (desktop — Facebook & WhatsApp below nav)
   ================================================================ */
.social-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 4px 20px;
  background: #FFFFFF;
  border-bottom: 1px solid #eeeeee;
  gap: 10px;
}

.social-bar a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.social-bar a:hover {
  opacity: 0.85;
}

.social-bar .fb-icon {
  background: #1877F2;
}

.social-bar .wa-icon {
  background: #25D366;
}

@media (max-width: 768px) {
  .social-bar {
    display: none;
  }
}

/* On desktop, hide the social icons inside nav-actions (shown in social-bar instead) */
@media (min-width: 769px) {
  .nav-social-icons {
    display: none;
  }
}
