/* ============================================
   CB Exotics — Hollywood's Premium Cannabis Dispensary
   Master Stylesheet
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-card: #151520;
  --bg-card-hover: #1a1a2e;
  --accent-blue: #00AAFF;
  --accent-green: #00FF88;
  --text-primary: #FFFFFF;
  --text-secondary: #999999;
  --text-muted: #666666;
  --glow-blue: 0 0 20px rgba(0, 170, 255, 0.3);
  --glow-blue-strong: 0 0 30px rgba(0, 170, 255, 0.5);
  --glow-blue-text: 0 0 20px rgba(0, 170, 255, 0.5);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-blue: rgba(0, 170, 255, 0.3);
  --glass-bg: rgba(21, 21, 32, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --nav-height: 80px;
  --max-width: 1280px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--text-primary);
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

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

section {
  padding: 80px 0;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-blue);
}

/* ============================================
   AGE GATE
   ============================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 24px;
}

.age-gate.hidden {
  display: none;
}

.age-gate__logo {
  width: 200px;
  margin-bottom: 32px;
}

.age-gate__title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.age-gate__text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 440px;
}

.age-gate__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn--primary {
  background: var(--accent-blue);
  color: #000;
  box-shadow: var(--glow-blue);
}

.btn--primary:hover {
  background: #33bbff;
  box-shadow: var(--glow-blue-strong);
  color: #000;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-blue);
}

.btn--outline:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--glow-blue);
  color: var(--accent-blue);
  transform: translateY(-2px);
}

.btn--danger {
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn--danger:hover {
  border-color: #ff4444;
  color: #ff4444;
}

.btn--small {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.navbar__logo img {
  height: 50px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  transition: color var(--transition);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: width var(--transition);
  box-shadow: var(--glow-blue);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--text-primary);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition), text-shadow var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--text-primary);
  text-shadow: var(--glow-blue-text);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 170, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 170, 255, 0.06) 0%, transparent 50%),
    var(--bg-primary);
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Animated gradient orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 12s ease-in-out infinite;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 170, 255, 0.1);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 255, 136, 0.08);
  bottom: -10%;
  right: -10%;
  animation-delay: -4s;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: rgba(0, 170, 255, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -8s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 30px) scale(1.02); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__logo {
  width: clamp(220px, 40vw, 380px);
  margin: 0 auto 32px;
  filter: drop-shadow(0 0 40px rgba(0, 170, 255, 0.2));
}

.hero__tagline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: var(--glow-blue-text);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtext {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header__subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-header__line {
  width: 60px;
  height: 3px;
  background: var(--accent-blue);
  margin: 16px auto 0;
  border-radius: 2px;
  box-shadow: var(--glow-blue);
}

/* ============================================
   CATEGORIES GRID (Home)
   ============================================ */
.categories {
  background: var(--bg-secondary);
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: var(--text-primary);
  display: block;
}

.category-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--border-blue);
  box-shadow: var(--glow-blue);
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

.category-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 170, 255, 0.08);
  border: 1px solid rgba(0, 170, 255, 0.15);
}

.category-card__icon svg {
  width: 32px;
  height: 32px;
  fill: var(--accent-blue);
}

.category-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.category-card__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================
   WHY CB EXOTICS
   ============================================ */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
}

.why-card:hover {
  border-color: var(--border-blue);
  box-shadow: var(--glow-blue);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 170, 255, 0.08);
}

.why-card__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--accent-blue);
}

.why-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.why-card__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   INSTAGRAM / SOCIAL
   ============================================ */
.social {
  background: var(--bg-secondary);
}

.social__handle {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 8px;
}

.social__handle a {
  color: var(--accent-blue);
  text-shadow: var(--glow-blue-text);
}

.social__handle a:hover {
  color: var(--text-primary);
}

.social__cta-text {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 40px;
}

.social__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.social__post {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  display: block;
  transition: all var(--transition);
}

.social__post:hover {
  border-color: var(--border-blue);
  box-shadow: var(--glow-blue);
  transform: translateY(-4px);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer__brand-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer__list li {
  margin-bottom: 10px;
}

.footer__list a,
.footer__list span {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__list a:hover {
  color: var(--accent-blue);
}

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__disclaimer {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.footer__copyright {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ============================================
   MENU PAGE
   ============================================ */
.page-header {
  padding: calc(var(--nav-height) + 60px) 0 40px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 170, 255, 0.06) 0%, transparent 60%),
    var(--bg-primary);
}

.page-header__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-header__subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Filter Bar */
.filter-bar {
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
}

.filter-bar__inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  scrollbar-width: none;
}

.filter-bar__inner::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  flex-shrink: 0;
  padding: 10px 24px;
  border-radius: 100px;
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-blue);
  color: #000;
  border-color: var(--accent-blue);
  box-shadow: var(--glow-blue);
}

/* Menu Section */
.menu-section {
  padding: 60px 0 20px;
}

.menu-section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-section__title svg {
  width: 28px;
  height: 28px;
  fill: var(--accent-blue);
}

/* Product Card */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.product-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--border-blue);
  box-shadow: var(--glow-blue);
}

.product-card__image {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card__image svg {
  width: 48px;
  height: 48px;
  fill: var(--text-muted);
  opacity: 0.25;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__image--transparent img {
  object-fit: contain;
  padding: 16px;
}

.product-card__image--contain img {
  object-fit: contain;
  padding: 8px;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--accent-green);
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.3);
}

.product-card__note {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 4px;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-card__badge--indica {
  background: rgba(150, 80, 220, 0.2);
  color: #c084fc;
  border: 1px solid rgba(150, 80, 220, 0.3);
}

.product-card__badge--sativa {
  background: rgba(0, 255, 136, 0.12);
  color: var(--accent-green);
  border: 1px solid rgba(0, 255, 136, 0.25);
}

.product-card__badge--hybrid {
  background: rgba(0, 170, 255, 0.12);
  color: var(--accent-blue);
  border: 1px solid rgba(0, 170, 255, 0.25);
}

.product-card__info {
  padding: 20px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-card__brand {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.product-card__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--accent-green);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.menu-section__note {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

.menu-section__note a {
  color: var(--accent-blue);
}


/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
  padding: 60px 0 80px;
}

.about-content__inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  margin: 48px 0 16px;
}

.about-content h2:first-child {
  margin-top: 0;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-content p:first-of-type {
  font-size: 1.15rem;
  color: var(--text-primary);
}

/* Feature list */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0 40px;
}

.about-feature {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all var(--transition);
}

.about-feature:hover {
  border-color: var(--border-blue);
  box-shadow: var(--glow-blue);
}

.about-feature__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 170, 255, 0.08);
}

.about-feature__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-blue);
}

.about-feature__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.about-feature__text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Team placeholder */
.about-team-image {
  margin: 48px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.about-team-image__placeholder {
  aspect-ratio: 21/9;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.about-team-image__placeholder svg {
  width: 48px;
  height: 48px;
  fill: var(--text-muted);
  opacity: 0.3;
}

.about-team-image__placeholder span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--border-blue);
  box-shadow: var(--glow-blue);
}

.contact-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 170, 255, 0.08);
  border: 1px solid rgba(0, 170, 255, 0.15);
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-blue);
}

.contact-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-card__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-card__text a {
  color: var(--accent-blue);
}

.contact-card__text a:hover {
  color: var(--text-primary);
}

/* Map */
.map-container {
  margin-bottom: 60px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border-blue);
  box-shadow: var(--glow-blue);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  filter: grayscale(0.5) brightness(0.8) contrast(1.1);
}

/* Contact Form */
/* Quick Links */
.quick-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Large desktop: 1280px+ — default styles above */

/* Desktop: 1024px */
@media (max-width: 1024px) {
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet: 768px */
@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  section {
    padding: 60px 0;
  }

  .navbar__links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero__tagline {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .social__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .map-container iframe {
    height: 300px;
  }
}

/* Mobile: 480px */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  section {
    padding: 48px 0;
  }

  .categories__grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .social__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-bottom: 60px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .category-card {
    padding: 28px 20px;
  }

  .mobile-menu a {
    font-size: 2rem;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero__ctas .btn {
    width: 100%;
    max-width: 280px;
  }

  .map-container iframe {
    height: 250px;
  }
}
