/* =========================================================
   ROOT VARIABLES + GLOBAL BASE
   ========================================================= */
:root {
  --bg: #0b0b0d;
  --text: #eae8e5;
  --muted: #b9b2aa;
  --card: #111217;
  --card-border: rgba(255, 255, 255, 0.06);
  --white: #ffffff;

  --radius: 14px;
  --transition: 260ms cubic-bezier(.22, .9, .2, 1);

  --home-bg: #050509;
  --about-bg: #0e0f14;
  --components-bg: #0b0e12;
  --brands-bg: #101018;
  --contact-bg: #07080c;

  --accent-gold: #d4af37;
  --accent-gold-soft: #facc15;
  --accent-purple: #7c3aed;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}

.centered {
  text-align: center;
}

/* Scroll offset so sticky header doesn't hide section tops */
section {
  scroll-margin-top: 80px;
  padding: 5.5rem 0 4.5rem;
  position: relative;
}

/* Section headings + yellow underline */
section h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin: 0 0 1.1rem;
  position: relative;
  display: inline-block;
}

section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 90px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent-gold-soft);
  box-shadow: 0 4px 18px rgba(250, 204, 21, 0.4);
}

.lead {
  margin: 1.1rem auto 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
}


/* ================= HEADER ================= */
html {
  scroll-behavior: smooth;
}

.lc-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(5, 6, 10, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.lc-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.lc-logo:hover {
  color: var(--accent-gold-soft);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
}

/* Nav Links */
.lc-nav {
  display: flex;
  gap: 1.5rem;
}

.lc-nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  position: relative;
  transition: color 0.3s ease;
}

.lc-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent-gold-soft);
  transition: width 0.3s ease;
}

.lc-nav-link:hover {
  color: var(--accent-gold);
}

.lc-nav-link:hover::after {
  width: 100%;
}

/* ================= HAMBURGER ================= */
.menu-toggle-input {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  position: relative;
  z-index: 10000;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hamburger lines neatly stacked */
.menu-toggle span:nth-child(1) { transform: translateY(0); }
.menu-toggle span:nth-child(2) { transform: translateY(0); }
.menu-toggle span:nth-child(3) { transform: translateY(0); }

/* Animate to X when checked */
.menu-toggle-input:checked + .menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle-input:checked + .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.menu-toggle-input:checked + .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
@media (max-width: 860px) {
  .menu-toggle {
    display: flex;
  }

  .lc-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(5, 6, 10, 0.96);
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    padding: 2.2rem 1rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.45s ease, opacity 0.45s ease;
  }

  .menu-toggle-input:checked ~ .lc-nav {
    transform: translateY(0);
    opacity: 1;
  }
}


/* =========================================================
   HERO / HOME
   ========================================================= */
#home.hero {
  background: var(--home-bg);
  padding: 7rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

/* RGB glow */
.rgb-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.rgb-blob {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 640px;
  height: 360px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.88;
  mix-blend-mode: screen;
  background: conic-gradient(
    from 0deg,
    rgba(212, 175, 55, 0.33),
    rgba(245, 208, 138, 0.26),
    rgba(126, 93, 255, 0.3),
    rgba(79, 70, 229, 0.18)
  );
  animation: heroSpin 24s linear infinite;
}

@keyframes heroSpin {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.brand-title {
  font-family: "Times New Roman", Georgia, serif;
  font-size: 3.2rem;
  font-weight: 800;
  padding: 0.6rem 1.4rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
}

.slogan {
  margin-top: 0.9rem;
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.98rem;
  color: #0f172a;
  background: linear-gradient(90deg, var(--accent-gold-soft), var(--accent-gold));
  box-shadow: 0 12px 40px rgba(250, 204, 21, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(250, 204, 21, 0.55);
}

/* Hero mobile tweaks */
@media (max-width: 768px) {
  #home.hero {
    padding-top: 6rem;
    padding-bottom: 4.5rem;
  }

  .brand-title {
    font-size: 2.3rem;
    padding: 0.5rem 1.1rem;
  }

  .slogan {
    font-size: 0.95rem;
  }

  .rgb-blob {
    width: 340px;
    height: 230px;
    top: -10px;
    filter: blur(65px);
  }
}


/* =========================================================
   ABOUT SECTION
   ========================================================= */
#about {
  background: var(--about-bg);
}

.about-graphic-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.about-decor {
  width: 100%;
  height: 100%;
  display: block;
  filter: blur(30px);
}

.lc-about-container {
  position: relative;
  z-index: 2;
}

#about .lead {
  margin-bottom: 2.3rem;
}

.highlight {
  color: var(--accent-gold);
  font-weight: 700;
}

/* About grid 2x2 */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 1.5rem;
}

@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* Card base */
.lc-card.about-box {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  padding: 1.7rem 1.5rem 1.5rem;
  text-align: left;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.lc-card.about-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6);
  border-color: rgba(250, 204, 21, 0.4);
}

/* Icon */
.about-icon {
  margin-bottom: 0.7rem;
  color: var(--accent-gold);
}

/* Titles & badges */
.about-box h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.badge {
  display: inline-block;
  margin-left: 0.45rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(250, 204, 21, 0.1);
  color: var(--accent-gold-soft);
}

.badge.alt {
  background: rgba(124, 58, 237, 0.14);
  color: var(--accent-purple);
}

.badge.small {
  font-size: 0.7rem;
}

/* Text */
.about-body p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.96rem;
}

.about-note {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.chip {
  background: rgba(250, 204, 21, 0.07);
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  font-size: 0.78rem;
}

.inline-list {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Bullet lists */
.lc-bullets {
  list-style: none;
  padding: 0;
  margin: 0.1rem 0 0.4rem;
}

.lc-bullets li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.96rem;
  margin: 0.25rem 0;
}

.dot {
  color: var(--accent-gold-soft);
  font-size: 1.1rem;
  line-height: 1;
}

.mini {
  margin-left: auto;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* About responsive tweaks */
@media (max-width: 540px) {
  .lc-card.about-box {
    padding: 1.4rem 1.25rem;
  }
  .about-box h3 {
    font-size: 1.15rem;
  }
  .about-body p {
    font-size: 0.9rem;
  }
}
/* Prevent body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

/* Ensure hamburger is above header content */
.menu-toggle {
  z-index: 11000;
}

/* =========================================================
   HERO / HOME
   ========================================================= */
#home.hero {
  background: var(--home-bg);
  padding: 7rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

/* RGB glow */
.rgb-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.rgb-blob {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 640px;
  height: 360px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.88;
  mix-blend-mode: screen;
  background: conic-gradient(
    from 0deg,
    rgba(212, 175, 55, 0.33),
    rgba(245, 208, 138, 0.26),
    rgba(126, 93, 255, 0.3),
    rgba(79, 70, 229, 0.18)
  );
  animation: heroSpin 24s linear infinite;
}

@keyframes heroSpin {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.brand-title {
  font-family: "Times New Roman", Georgia, serif;
  font-size: 3.2rem;
  font-weight: 800;
  padding: 0.6rem 1.4rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
}

.slogan {
  margin-top: 0.9rem;
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.98rem;
  color: #0f172a;
  background: linear-gradient(90deg, var(--accent-gold-soft), var(--accent-gold));
  box-shadow: 0 12px 40px rgba(250, 204, 21, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(250, 204, 21, 0.55);
}

/* Hero mobile tweaks */
@media (max-width: 768px) {
  #home.hero {
    padding-top: 6rem;
    padding-bottom: 4.5rem;
  }

  .brand-title {
    font-size: 2.3rem;
    padding: 0.5rem 1.1rem;
  }

  .slogan {
    font-size: 0.95rem;
  }

  .rgb-blob {
    width: 340px;
    height: 230px;
    top: -10px;
    filter: blur(65px);
  }
}


/* =========================================================
   ABOUT SECTION
   ========================================================= */
#about {
  background: var(--about-bg);
}

.about-graphic-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.about-decor {
  width: 100%;
  height: 100%;
  display: block;
  filter: blur(30px);
}

.lc-about-container {
  position: relative;
  z-index: 2;
}

#about .lead {
  margin-bottom: 2.3rem;
}

.highlight {
  color: var(--accent-gold);
  font-weight: 700;
}

/* About grid 2x2 */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 1.5rem;
}

@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* Card base */
.lc-card.about-box {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  padding: 1.7rem 1.5rem 1.5rem;
  text-align: left;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.lc-card.about-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6);
  border-color: rgba(250, 204, 21, 0.4);
}

/* Icon */
.about-icon {
  margin-bottom: 0.7rem;
  color: var(--accent-gold);
}

/* Titles & badges */
.about-box h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.badge {
  display: inline-block;
  margin-left: 0.45rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(250, 204, 21, 0.1);
  color: var(--accent-gold-soft);
}

.badge.alt {
  background: rgba(124, 58, 237, 0.14);
  color: var(--accent-purple);
}

.badge.small {
  font-size: 0.7rem;
}

/* Text */
.about-body p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.96rem;
}

.about-note {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.chip {
  background: rgba(250, 204, 21, 0.07);
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  font-size: 0.78rem;
}

.inline-list {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Bullet lists */
.lc-bullets {
  list-style: none;
  padding: 0;
  margin: 0.1rem 0 0.4rem;
}

.lc-bullets li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.96rem;
  margin: 0.25rem 0;
}

.dot {
  color: var(--accent-gold-soft);
  font-size: 1.1rem;
  line-height: 1;
}

.mini {
  margin-left: auto;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* About responsive tweaks */
@media (max-width: 540px) {
  .lc-card.about-box {
    padding: 1.4rem 1.25rem;
  }
  .about-box h3 {
    font-size: 1.15rem;
  }
  .about-body p {
    font-size: 0.9rem;
  }
}

/* =========================================================
   HERO / HOME
   ========================================================= */
#home.hero {
  background: var(--home-bg);
  padding: 7rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

/* RGB glow */
.rgb-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.rgb-blob {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 640px;
  height: 360px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.88;
  mix-blend-mode: screen;
  background: conic-gradient(
    from 0deg,
    rgba(212, 175, 55, 0.33),
    rgba(245, 208, 138, 0.26),
    rgba(126, 93, 255, 0.3),
    rgba(79, 70, 229, 0.18)
  );
  animation: heroSpin 24s linear infinite;
}

@keyframes heroSpin {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.brand-title {
  font-family: "Times New Roman", Georgia, serif;
  font-size: 3.2rem;
  font-weight: 800;
  padding: 0.6rem 1.4rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
}

.slogan {
  margin-top: 0.9rem;
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.98rem;
  color: #0f172a;
  background: linear-gradient(90deg, var(--accent-gold-soft), var(--accent-gold));
  box-shadow: 0 12px 40px rgba(250, 204, 21, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(250, 204, 21, 0.55);
}

/* Hero mobile tweaks */
@media (max-width: 768px) {
  #home.hero {
    padding-top: 6rem;
    padding-bottom: 4.5rem;
  }

  .brand-title {
    font-size: 2.3rem;
    padding: 0.5rem 1.1rem;
  }

  .slogan {
    font-size: 0.95rem;
  }

  .rgb-blob {
    width: 340px;
    height: 230px;
    top: -10px;
    filter: blur(65px);
  }
}


/* =========================================================
   ABOUT SECTION
   ========================================================= */
#about {
  background: var(--about-bg);
}

.about-graphic-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.about-decor {
  width: 100%;
  height: 100%;
  display: block;
  filter: blur(30px);
}

.lc-about-container {
  position: relative;
  z-index: 2;
}

#about .lead {
  margin-bottom: 2.3rem;
}

.highlight {
  color: var(--accent-gold);
  font-weight: 700;
}

/* About grid 2x2 */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 1.5rem;
}

@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* Card base */
.lc-card.about-box {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  padding: 1.7rem 1.5rem 1.5rem;
  text-align: left;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.lc-card.about-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6);
  border-color: rgba(250, 204, 21, 0.4);
}

/* Icon */
.about-icon {
  margin-bottom: 0.7rem;
  color: var(--accent-gold);
}

/* Titles & badges */
.about-box h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.badge {
  display: inline-block;
  margin-left: 0.45rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(250, 204, 21, 0.1);
  color: var(--accent-gold-soft);
}

.badge.alt {
  background: rgba(124, 58, 237, 0.14);
  color: var(--accent-purple);
}

.badge.small {
  font-size: 0.7rem;
}

/* Text */
.about-body p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.96rem;
}

.about-note {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.chip {
  background: rgba(250, 204, 21, 0.07);
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  font-size: 0.78rem;
}

.inline-list {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Bullet lists */
.lc-bullets {
  list-style: none;
  padding: 0;
  margin: 0.1rem 0 0.4rem;
}

.lc-bullets li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.96rem;
  margin: 0.25rem 0;
}

.dot {
  color: var(--accent-gold-soft);
  font-size: 1.1rem;
  line-height: 1;
}

.mini {
  margin-left: auto;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* About responsive tweaks */
@media (max-width: 540px) {
  .lc-card.about-box {
    padding: 1.4rem 1.25rem;
  }
  .about-box h3 {
    font-size: 1.15rem;
  }
  .about-body p {
    font-size: 0.9rem;
  }
}
/* =========================================================
   COMPONENTS SECTION
   ========================================================= */

#components {
  background: var(--components-bg);
}

#components .lead {
  margin-top: 0.4rem;
  text-align: center;
}

/* Components grid */
.components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

/* Component card base */
.comp-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.comp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  border-color: rgba(250, 204, 21, 0.4);
}

/* Media area */
.comp-media {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.comp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text body */
.comp-body {
  padding: 1rem 1rem 1.25rem;
}

.comp-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.12rem;
  font-weight: 700;
}

.comp-body p {
  margin: 0.2rem 0;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.5;
}

.brand-list {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
}

/* Extra RGB-ish hover for comp-rgb */
.comp-rgb:hover {
  box-shadow:
    0 0 22px rgba(126, 93, 255, 0.4),
    0 0 40px rgba(212, 175, 55, 0.3),
    0 18px 38px rgba(0, 0, 0, 0.8);
}

/* Components responsive tweaks */
@media (max-width: 520px) {
  .comp-media {
    height: 150px;
  }
}
/* COMPONENTS — vertical layout */
.components-grid {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  max-width: 820px;        /* keeps it nicely centered */
  margin: 2rem auto 0;
  padding: 0 1rem;
}
.comp-card {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
/* COMPONENTS — vertical full-width stretched layout */
.components-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.8rem;
  margin-top: 2rem;
}

/* Make every card stretch full width */
.comp-card {
  width: 100%;
  display: flex;
  flex-direction: row;
  min-height: 230px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

/* Left image area — same height for all */
.comp-media {
  width: 36%;
  min-width: 260px;
  height: 100%;
  overflow: hidden;
}

.comp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right details area — always equal width */
.comp-body {
  flex: 1;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Title + text alignment */
.comp-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.comp-body p {
  margin: 0.3rem 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--muted);
}

.brand-list {
  margin-top: 0.5rem;
  font-weight: 700;
  color: var(--text);
}

/* Responsive – stack image above text on mobile */
@media(max-width: 780px) {
  .comp-card {
    flex-direction: column;
  }

  .comp-media {
    width: 100%;
    height: 200px;
    min-width: 100%;
  }
}


/* =========================================================
   BRANDS SECTION
   ========================================================= */

#brands {
  background: var(--brands-bg);
  text-align: center;
}

.brands-block {
  margin-top: 1.2rem;
}

#brands .lead {
  margin-top: 0.4rem;
}

/* Subheading inside brands */
.brands-sub {
  margin-top: 1.7rem;
  font-size: 1.2rem;
  font-weight: 700;
}

/* Brand grid: 3×2 on desktop */
.brands-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  justify-items: center;
}

/* On smaller screens, adjust columns */
@media (max-width: 720px) {
  .brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .brands-grid {
    grid-template-columns: 1fr;
  }
}

/* Brand card: white background for logos */
.brand-card {
  background: var(--white);
  border-radius: 16px;
  padding: 0.9rem;
  height: 95px;
  width: 100%;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.brand-card img {
  max-height: 55px;
  width: auto;
  object-fit: contain;
}
/* === MOBILE FIX FOR BRANDS — 3 rows × 2 columns === */
@media (max-width: 600px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
}


/* /* =========================================================
   CONTACT US — FULL REWRITE (Final Clean Premium Version)
   ========================================================= */

#contact {
  background: var(--contact-bg);
  padding: 5rem 0 4.5rem;
}

#contact-heading {
  text-align: center;
  font-size: 2.4rem;
  margin: 0;
}

#contact .lead {
  text-align: center;
  margin-top: 0.4rem;
  color: var(--muted);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Main contact layout */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  margin-top: 2.5rem;
}

/* Each contact card */
.contact-item {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.45rem 1.4rem 1.55rem;
  box-shadow: 0 10px 32px rgba(0,0,0,0.55);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.75);
}

/* Headings inside contact cards */
.contact-item strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: .45rem;
  color: var(--text);
}

/* Address block */
.contact-item address {
  margin: .4rem 0 .7rem;
  font-style: normal;
  line-height: 1.55;
  font-size: .96rem;
  color: var(--muted);
}

/* Phone numbers */
.contact-item a[href^="tel"] {
  color: var(--text);
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
}

.contact-item a[href^="tel"]:hover {
  text-decoration: underline;
}

/* Google Maps button */
.highlighted-map {
  display: inline-block;
  margin-top: 0.85rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  background: linear-gradient(90deg,#f8d66d,#d4af37);
  color: #0b0b0d;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.highlighted-map:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(212,175,55,0.55);
}

/* FIX: ensure all links remain clickable */
.contact-item a,
.contact-item a *,
.highlighted-map,
.highlighted-map * {
  pointer-events: auto !important;
}

/* MOBILE — perfect spacing + full width */
@media (max-width: 560px) {
  .contact-item {
    padding: 1.3rem 1.2rem;
  }
  .highlighted-map {
    display: block;
    width: 100%;
    text-align: center;
  }
}