/* ============================================================
   RC FUN — style.css
   Blue & White clean/modern theme
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --blue:        #1a56db;
  --blue-dark:   #1341b0;
  --blue-light:  #e8f0fe;
  --blue-mid:    #3b82f6;
  --white:       #ffffff;
  --off-white:   #f7f9fc;
  --bg:          #f0f4ff;
  --card-bg:     #ffffff;
  --border:      #dbe4f5;
  --text:        #0f172a;
  --muted:       #64748b;
  --light-muted: #94a3b8;
  --shadow-sm:   0 2px 8px rgba(26,86,219,.08);
  --shadow-md:   0 8px 32px rgba(26,86,219,.13);
  --shadow-lg:   0 20px 60px rgba(26,86,219,.18);
  --radius:      10px;
  --font-display:'Rajdhani', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --nav-h:       70px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { cursor: pointer; font-family: var(--font-body); }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
}
.nav-logo span { color: var(--blue); }

.nav-links {
  display: flex;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.nav-cart {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: .55rem 1.3rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex; align-items: center; gap: .5rem;
  transition: background .2s, transform .15s;
}
.nav-cart:hover { background: var(--blue-dark); transform: translateY(-1px); }

.cart-badge {
  background: var(--white);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) 5vw 80px;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f0fe 0%, #f0f4ff 40%, #dbeafe 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-blob-1 {
  width: 520px; height: 520px;
  background: rgba(26,86,219,.12);
  top: -100px; right: -80px;
}
.hero-blob-2 {
  width: 340px; height: 340px;
  background: rgba(59,130,246,.1);
  bottom: 0; left: 10%;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--blue);
  font-size: .75rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.hero-title .line-blue { color: var(--blue); display: block; }

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 2.4rem;
  line-height: 1.75;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: .85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .5px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(26,86,219,.3);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,219,.35);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: .82rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  transition: background .2s, color .2s, transform .15s;
}
.btn-ghost:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero image placeholder */
.hero-img-wrap {
  position: relative;
}
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 1 / .85;
  background: var(--white);
  border-radius: 20px;
  border: 2px dashed var(--border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .8rem;
  color: var(--light-muted);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
/* To add your hero image: replace the div.hero-img-placeholder with:
   <img src="YOUR_IMAGE.jpg" alt="RC Fun Hero" class="hero-img-placeholder" style="object-fit:cover;border:none;">
*/
.hero-img-placeholder .ph-icon { font-size: 3.5rem; }
.hero-img-placeholder .ph-label {
  font-size: .78rem; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 600;
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: .9rem 1.2rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .7rem;
  font-size: .82rem; font-weight: 600;
}
.hero-float-card.card-a { bottom: -20px; left: -30px; }
.hero-float-card.card-b { top: 20px; right: -20px; }
.fc-icon { font-size: 1.4rem; }
.fc-label { color: var(--muted); font-weight: 400; font-size: .72rem; }

/* Hero stats */
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--blue); line-height: 1;
}
.stat-label {
  font-size: .72rem; color: var(--muted);
  letter-spacing: 1px; text-transform: uppercase;
  margin-top: .2rem;
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
section { padding: 100px 5vw; }

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  font-size: .72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: .6rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.05;
  margin-bottom: .9rem;
  color: var(--text);
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 5vw;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
#products { background: var(--white); }

/* Category tabs */
.cat-tabs {
  display: flex; gap: .6rem; flex-wrap: wrap;
  margin-bottom: 2.8rem;
}
.tab-btn {
  padding: .55rem 1.4rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: all .2s;
}
.tab-btn:hover { border-color: var(--blue); color: var(--blue); }
.tab-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(26,86,219,.25);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.6rem;
}

.product-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: none;
}
.product-card.visible { display: block; }
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-mid);
}

/* Product image placeholder */
.card-img {
  width: 100%;
  height: 200px;
  background: var(--blue-light);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem;
  border-bottom: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
}
/* To replace with a real image:
   <img src="YOUR_PRODUCT_IMAGE.jpg" alt="Product Name" style="width:100%;height:200px;object-fit:cover;">
*/
.card-img .ph-emoji { font-size: 4.5rem; }
.card-img .ph-text {
  font-size: .7rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue-mid);
  font-weight: 600;
}
.card-img .img-hint {
  position: absolute; bottom: 8px; right: 10px;
  font-size: .65rem; color: var(--blue-mid);
  background: rgba(255,255,255,.8);
  padding: .2rem .5rem; border-radius: 4px;
  letter-spacing: .5px;
}

.card-body { padding: 1.4rem; }
.card-tag {
  font-size: .67rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue);
  font-weight: 700; margin-bottom: .4rem;
}
.card-name {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700;
  letter-spacing: .5px; margin-bottom: .5rem;
  color: var(--text);
}
.card-desc {
  font-size: .85rem; color: var(--muted);
  line-height: 1.65; margin-bottom: 1.2rem;
}
.card-footer {
  display: flex; align-items: center;
  justify-content: space-between;
}
.card-price {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 700;
  color: var(--blue);
}
.card-view-btn {
  background: var(--blue-light);
  color: var(--blue);
  border: none;
  padding: .48rem 1rem;
  border-radius: 6px;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .5px;
  transition: background .2s, color .2s;
}
.card-view-btn:hover { background: var(--blue); color: var(--white); }

/* ============================================================
   PRODUCT DETAIL MODAL
   ============================================================ */
#product-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(4px);
  z-index: 400;
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
#product-overlay.open { display: flex; }

.product-modal {
  background: var(--white);
  border-radius: 16px;
  width: 100%; max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalIn .3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute; top: 1.2rem; right: 1.4rem;
  background: var(--off-white);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background .2s, color .2s;
}
.modal-close:hover { background: var(--blue); color: var(--white); }

.modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Modal image placeholder */
.modal-img {
  background: var(--blue-light);
  min-height: 360px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .8rem;
  border-radius: 16px 0 0 16px;
  padding: 2rem;
}
/* To add product image:
   Replace the .modal-img div contents with:
   <img src="YOUR_IMAGE.jpg" alt="..." style="width:100%;height:100%;object-fit:cover;border-radius:16px 0 0 16px;">
*/
.modal-img .ph-emoji { font-size: 7rem; }
.modal-img .ph-label {
  font-size: .72rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue);
  font-weight: 600;
  background: rgba(255,255,255,.7);
  padding: .3rem .8rem; border-radius: 6px;
}

.modal-body { padding: 2.5rem; }

.modal-tag {
  font-size: .68rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue);
  font-weight: 700; margin-bottom: .5rem;
}
.modal-name {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  letter-spacing: 1px; margin-bottom: .4rem;
  color: var(--text);
}
.modal-price {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700;
  color: var(--blue); margin-bottom: 1.2rem;
}

.modal-divider {
  border: none; border-top: 1px solid var(--border);
  margin: 1.2rem 0;
}

.modal-section-title {
  font-size: .72rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
  font-weight: 600; margin-bottom: .7rem;
}
.modal-desc {
  font-size: .92rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 1.5rem;
}

/* Specs list */
.modal-specs {
  list-style: none; margin-bottom: 1.5rem;
}
.modal-specs li {
  display: flex; justify-content: space-between;
  font-size: .85rem; padding: .45rem 0;
  border-bottom: 1px solid var(--border);
}
.modal-specs li:last-child { border-bottom: none; }
.spec-key { color: var(--muted); }
.spec-val { font-weight: 600; color: var(--text); }

/* Qty + add to cart */
.modal-actions {
  display: flex; gap: .8rem; align-items: center; margin-top: 1.2rem;
}
.qty-control {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--border); border-radius: 8px;
  overflow: hidden;
}
.qty-btn {
  background: var(--off-white); border: none;
  width: 38px; height: 42px;
  font-size: 1.1rem; font-weight: 700;
  color: var(--blue);
  transition: background .15s;
}
.qty-btn:hover { background: var(--blue-light); }
.qty-val {
  width: 42px; text-align: center;
  font-weight: 600; font-size: .95rem;
  color: var(--text); border: none;
  background: transparent;
  pointer-events: none;
}
.modal-add-btn {
  flex: 1;
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: .75rem 1.2rem;
  border-radius: 8px;
  font-weight: 700; font-size: .9rem;
  letter-spacing: .5px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 12px rgba(26,86,219,.25);
}
.modal-add-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(26,86,219,.3);
}

/* ============================================================
   CART MODAL
   ============================================================ */
#cart-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(15,23,42,.5);
  backdrop-filter: blur(4px);
  z-index: 500;
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
#cart-overlay.open { display: flex; }

.cart-modal {
  background: var(--white);
  border-radius: 16px;
  width: 100%; max-width: 480px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalIn .3s ease;
}

.cart-modal h2 {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 700;
  letter-spacing: 1px; margin-bottom: 1.5rem;
  color: var(--text);
}
.cart-close-btn {
  position: absolute; top: 1.2rem; right: 1.4rem;
  background: var(--off-white); border: none;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1.1rem; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.cart-close-btn:hover { background: var(--blue); color: var(--white); }

#cart-items { list-style: none; }
#cart-items li {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
#cart-items li:last-child { border-bottom: none; }
.ci-name { font-weight: 600; color: var(--text); }
.ci-price {
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--blue); font-weight: 700;
}
.ci-remove {
  background: none; border: 1px solid var(--border);
  color: var(--muted); padding: .2rem .55rem;
  border-radius: 5px; font-size: .75rem;
  transition: border-color .15s, color .15s;
}
.ci-remove:hover { border-color: #ef4444; color: #ef4444; }

.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin: 1.4rem 0;
  padding-top: 1rem;
  border-top: 2px solid var(--border);
}
.cart-total-label {
  font-size: .8rem; letter-spacing: 1px;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
}
.cart-total-val {
  font-family: var(--font-display);
  font-size: 1.8rem; color: var(--blue); font-weight: 700;
}

.checkout-btn {
  width: 100%;
  background: var(--blue); color: var(--white);
  border: none; padding: .9rem;
  border-radius: 8px; font-weight: 700;
  font-size: .92rem; letter-spacing: .5px;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(26,86,219,.25);
}
.checkout-btn:hover { background: var(--blue-dark); }

/* Checkout form (inside cart modal) */
#checkout-form {
  display: none;
  margin-top: 1.6rem;
}
#checkout-form h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 1rem; color: var(--text);
}
.form-field {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: .78rem 1rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  margin-bottom: .85rem;
  outline: none;
  transition: border-color .2s;
}
.form-field::placeholder { color: var(--light-muted); }
.form-field:focus { border-color: var(--blue); }

.pay-btn {
  width: 100%;
  background: #16a34a; color: var(--white);
  border: none; padding: .88rem;
  border-radius: 8px; font-weight: 700;
  font-size: .92rem; letter-spacing: .5px;
  transition: background .2s;
}
.pay-btn:hover { background: #15803d; }

/* Success */
.success-msg {
  display: none; text-align: center; padding: 2.5rem 1rem;
}
.success-msg .tick { font-size: 3.5rem; margin-bottom: 1rem; }
.success-msg h3 {
  font-family: var(--font-display);
  font-size: 1.8rem; letter-spacing: 1px;
  margin-bottom: .5rem; color: var(--text);
}
.success-msg p { font-size: .9rem; color: var(--muted); }

/* ============================================================
   STORES
   ============================================================ */
#stores { background: var(--off-white); }

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.store-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.store-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-mid);
}
.store-card::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
}
.store-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  color: var(--blue-light); line-height: 1;
  margin-bottom: .4rem;
}
.store-name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  letter-spacing: .5px; margin-bottom: .5rem;
}
.store-addr { font-size: .85rem; color: var(--muted); line-height: 1.65; }
.store-hours {
  margin-top: .9rem;
  font-size: .8rem; color: var(--blue);
  font-weight: 600; letter-spacing: .3px;
}

/* Store image placeholder */
.store-img-ph {
  width: 100%; height: 130px;
  background: var(--blue-light);
  border-radius: 6px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .4rem;
  margin-bottom: 1.2rem;
  border: 2px dashed var(--border);
}
/* Replace with: <img src="store1.jpg" alt="Store 1" style="width:100%;height:130px;object-fit:cover;border-radius:6px;"> */
.store-img-ph span { font-size: 2rem; }
.store-img-ph small {
  font-size: .65rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue-mid); font-weight: 600;
}

/* ============================================================
   WHY RC FUN
   ============================================================ */
#why { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.6rem;
}

.feature {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform .25s, box-shadow .25s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: .5px; margin-bottom: .45rem;
}
.feature-desc { font-size: .86rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-wrap { }
.contact-form-wrap .form-field { margin-bottom: .9rem; }
.contact-form-wrap textarea.form-field { resize: vertical; min-height: 130px; }

.submit-btn {
  background: var(--blue); color: var(--white);
  border: none; padding: .85rem 2.2rem;
  border-radius: 8px; font-weight: 700;
  font-size: .9rem; letter-spacing: .5px;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 4px 12px rgba(26,86,219,.25);
}
.submit-btn:hover { background: var(--blue-dark); }

.contact-info-wrap { }

.newsletter-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  margin-bottom: 2rem;
}
.newsletter-box h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  margin-bottom: .4rem;
}
.newsletter-box p { font-size: .88rem; color: var(--muted); margin-bottom: 1.3rem; }

.nl-row { display: flex; gap: .5rem; }
.nl-row input {
  flex: 1;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  color: var(--text); padding: .75rem 1rem;
  border-radius: 8px;
  font-family: var(--font-body); font-size: .88rem;
  outline: none; transition: border-color .2s;
}
.nl-row input:focus { border-color: var(--blue); }
.nl-row button {
  background: var(--blue); color: var(--white);
  border: none; padding: .75rem 1.2rem;
  border-radius: 8px; font-weight: 700;
  font-size: .82rem; letter-spacing: .5px;
  white-space: nowrap;
  transition: background .2s;
}
.nl-row button:hover { background: var(--blue-dark); }

.info-list { list-style: none; }
.info-list li {
  display: flex; gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.info-list li:last-child { border-bottom: none; }
.info-ico { font-size: 1.15rem; flex-shrink: 0; margin-top: .05rem; }
.info-content strong { display: block; font-weight: 600; color: var(--text); margin-bottom: .1rem; }
.info-content span { color: var(--muted); font-size: .88rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--text);
  color: var(--white);
  padding: 2.5rem 5vw;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 700; letter-spacing: 2px;
}
.footer-logo span { color: var(--blue-mid); }

.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  font-size: .78rem; letter-spacing: 1px;
  text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.35); }

/* ============================================================
   TOAST
   ============================================================ */
#toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--blue); color: var(--white);
  padding: .85rem 1.6rem; border-radius: 8px;
  font-weight: 600; font-size: .88rem;
  box-shadow: 0 8px 24px rgba(26,86,219,.35);
  transform: translateY(120px); opacity: 0;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  z-index: 600;
}
#toast.show { transform: translateY(0); opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .modal-inner { grid-template-columns: 1fr; }
  .modal-img { border-radius: 16px 16px 0 0; min-height: 220px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .hero-stats { flex-direction: column; gap: 1rem; }
}
