/* ==========================================================================
   VerveStone & DAP Professional Surfaces - Pure Blue & White Theme
   Inspired by Bema Stone (bemastone.com) & DAP (dap.com)
   ========================================================================== */

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

:root {
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-nav: rgba(255, 255, 255, 0.96);
  
  /* Bema Stone & DAP Blue/White Color Tokens */
  --bema-blue: #0047bb;
  --bema-blue-hover: #003690;
  --navy-dark: #0c2340;
  --navy-light: #1e3a8a;
  --ice-blue: #f0f6ff;
  --sky-light: #e0edff;
  --dap-red: #d97706; /* High contrast DAP highlight */
  
  --text-dark: #0f172a;
  --text-dim: #334155;
  --text-muted: #64748b;
  
  --border-color: #cbd5e1;
  --border-light: #e2e8f0;
  --border-blue: rgba(0, 71, 187, 0.25);
  
  --shadow-sm: 0 2px 8px rgba(12, 35, 64, 0.05);
  --shadow-md: 0 8px 25px rgba(12, 35, 64, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 71, 187, 0.15);
  
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for sticky bottom Bema quote bar */
}

a {
  color: inherit;
  text-decoration: none;
}

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

button, input, select, textarea {
  font-family: inherit;
}

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

/* Top Announcement Bar - Deep Navy */
.top-bar {
  background: var(--navy-dark);
  color: #ffffff;
  font-size: 0.82rem;
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--bema-blue);
}

.top-bar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

.badge-blue {
  background: var(--bema-blue);
  color: #ffffff;
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
}

/* Header & Navigation - Clean White & Royal Blue */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--bema-blue) 0%, var(--navy-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 71, 187, 0.3);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--navy-dark);
}

.brand-name span {
  color: var(--bema-blue);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dim);
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--bema-blue);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--bema-blue);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-box {
  position: relative;
}

.search-box input {
  background: var(--ice-blue);
  border: 1px solid var(--border-color);
  border-radius: 25px;
  padding: 9px 16px 9px 38px;
  color: var(--text-dark);
  font-size: 0.88rem;
  width: 210px;
  transition: var(--transition);
}

.search-box input:focus {
  outline: none;
  border-color: var(--bema-blue);
  background: #ffffff;
  width: 250px;
  box-shadow: 0 0 0 4px rgba(0, 71, 187, 0.12);
}

.search-box svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bema-blue);
  width: 16px;
  height: 16px;
}

.cart-btn {
  background: var(--ice-blue);
  border: 1px solid var(--border-blue);
  color: var(--bema-blue);
  padding: 9px 18px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
}

.cart-btn:hover {
  background: var(--bema-blue);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 71, 187, 0.25);
}

.cart-badge {
  background: var(--navy-dark);
  color: #ffffff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.btn-primary {
  background: var(--bema-blue);
  color: #ffffff;
  border: none;
  padding: 11px 26px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0, 71, 187, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--bema-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 71, 187, 0.35);
}

.btn-outline {
  background: #ffffff;
  color: var(--bema-blue);
  border: 2px solid var(--bema-blue);
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: var(--ice-blue);
  transform: translateY(-2px);
}

/* Hero Section - Clean Blue & White */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 60px 5%;
  background: linear-gradient(135deg, #ffffff 0%, var(--ice-blue) 55%, #e2eeff 100%);
  border-bottom: 1px solid var(--border-light);
}

.hero-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border-blue);
  padding: 7px 22px;
  border-radius: 30px;
  color: var(--bema-blue);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 71, 187, 0.08);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.8vw, 4.4rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--navy-dark);
}

.hero-title span {
  color: var(--bema-blue);
}

.hero-subtitle {
  font-size: 1.18rem;
  color: var(--text-dim);
  margin-bottom: 38px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 950px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: var(--bema-blue);
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-weight: 600;
}

/* Section Common */
.section {
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 44px;
}

.section-subtitle {
  color: var(--bema-blue);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  color: var(--navy-dark);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-desc {
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1rem;
}

/* Category Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 250px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,35,64,0.1) 0%, rgba(12,35,64,0.85) 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--bema-blue);
  box-shadow: var(--shadow-lg);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 4px;
}

.category-card p {
  color: var(--sky-light);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Catalog Toolbar Filters */
.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  background: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-pill {
  background: var(--ice-blue);
  border: 1px solid var(--border-light);
  color: var(--text-dim);
  padding: 9px 20px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.filter-pill:hover, .filter-pill.active {
  background: var(--bema-blue);
  color: #ffffff;
  border-color: var(--bema-blue);
  box-shadow: 0 4px 12px rgba(0, 71, 187, 0.2);
}

.filter-controls {
  display: flex;
  gap: 14px;
  align-items: center;
}

.select-custom {
  background: var(--ice-blue);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
}

.select-custom:focus {
  border-color: var(--bema-blue);
  background: #ffffff;
}

/* Product Cards Grid - Clean White & Blue Accent */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 28px;
}

.product-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  border-color: var(--bema-blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #f1f5f9;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.06);
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--bema-blue);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0, 71, 187, 0.3);
}

.dap-tag {
  background: #c2410c !important; /* DAP Orange/Red Brand Tag */
}

.product-quick-view {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  background: rgba(12, 35, 64, 0.92);
  backdrop-filter: blur(8px);
  padding: 10px;
  text-align: center;
  transition: var(--transition);
}

.product-card:hover .product-quick-view {
  bottom: 0;
}

.product-quick-view button {
  background: transparent;
  color: #ffffff;
  border: none;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.product-quick-view button:hover {
  color: var(--sky-light);
}

.product-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--bema-blue);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy-dark);
  font-weight: 800;
  margin-bottom: 10px;
}

.product-specs-mini {
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.product-specs-mini span {
  background: var(--ice-blue);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  font-weight: 600;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-dark);
}

.product-price small {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

.btn-add-quote {
  background: var(--bema-blue);
  color: #ffffff;
  border: none;
  padding: 9px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-add-quote:hover {
  background: var(--navy-dark);
  transform: scale(1.03);
}

/* STICKY BOTTOM BEMA QUOTE TRAY BAR */
.bema-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  color: #ffffff;
  padding: 12px 5%;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
  border-top: 3px solid var(--bema-blue);
}

.bema-bottom-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bema-bottom-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.bema-bottom-info p {
  font-size: 0.85rem;
  color: var(--sky-light);
}

/* BEMA STONE STYLE SLIDE-OUT CART & QUOTE TRAY */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 35, 64, 0.65);
  backdrop-filter: blur(4px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 460px;
  max-width: 95vw;
  height: 100%;
  background: #ffffff;
  border-left: 1px solid var(--border-color);
  z-index: 301;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(12, 35, 64, 0.18);
}

.drawer.active {
  right: 0;
}

.drawer-header {
  padding: 20px 24px;
  background: var(--navy-dark);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.drawer-close:hover {
  background: #ffffff;
  color: var(--navy-dark);
}

.drawer-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-cart-item {
  display: flex;
  gap: 14px;
  background: var(--ice-blue);
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  align-items: center;
}

.drawer-cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.drawer-cart-info {
  flex: 1;
}

.drawer-cart-info h4 {
  font-size: 0.95rem;
  color: var(--navy-dark);
  font-weight: 800;
}

.drawer-cart-info p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--bema-blue);
  background: #ffffff;
  color: var(--bema-blue);
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--bema-blue);
  color: #ffffff;
}

.qty-val {
  font-size: 0.88rem;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}

.drawer-footer {
  padding: 20px 24px;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 15px rgba(0,0,0,0.04);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.summary-row.total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  padding-top: 10px;
  border-top: 2px dashed var(--border-color);
  margin-top: 10px;
}

/* Modal Popup - Clean White & Blue */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 35, 64, 0.7);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--ice-blue);
  border: none;
  color: var(--navy-dark);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  background: var(--bema-blue);
  color: #ffffff;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 36px;
}

.modal-img-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 360px;
  border: 1px solid var(--border-light);
  background: #f8fafc;
}

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

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--navy-dark);
  font-weight: 800;
  margin-bottom: 6px;
}

.modal-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--bema-blue);
  margin-bottom: 16px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.88rem;
}

.specs-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border-light);
}

.specs-table tr td:first-child {
  color: var(--text-dim);
  font-weight: 700;
  width: 42%;
}

/* Quote Section */
.quote-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.quote-info h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  margin-bottom: 16px;
  color: var(--navy-dark);
  font-weight: 800;
}

.quote-info p {
  color: var(--text-dim);
  margin-bottom: 24px;
}

.quote-form-card {
  background: #ffffff;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input, .form-group select, .form-group textarea {
  background: var(--ice-blue);
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--bema-blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 71, 187, 0.15);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 80px;
  right: 30px;
  background: var(--navy-dark);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 500;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  font-weight: 600;
  border: 1px solid var(--bema-blue);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Footer - Blue & White */
footer {
  background: var(--navy-dark);
  color: var(--sky-light);
  padding: 60px 5% 30px;
  font-size: 0.9rem;
  border-top: 4px solid var(--bema-blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 50px;
}

.footer-brand p {
  margin-top: 14px;
  color: #cbd5e1;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 1024px) {
  .quote-section {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .modal-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .bema-bottom-info p {
    display: none;
  }
}
