/* ===================================
   ONLY VOLT — MAIN STYLESHEET
   Theme: White | Deep Blue Accent
   Font: Syne + DM Sans
=================================== */

.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.8rem; border-radius: 100px; font-family: 'Syne', 'Segoe UI', Arial, sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition); border: none; }
.btn-primary {
  background: var(--gold); color: var(--black);
  box-shadow: 0 6px 30px rgba(245,166,35,0.4);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(245,166,35,0.5); }
.btn-outline {
  background: transparent; color: var(--dark);
  border: 2px solid var(--gray-200);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-3px); }
.hero-stats {
  display: flex; gap: 2rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid var(--gray-200);
  animation: fadeInUp 0.6s 0.4s ease both;
}
.stat-item { text-align: center; }
.stat-num { font-family: 'Syne', 'Segoe UI', Arial, sans-serif; font-size: 2rem; font-weight: 800; color: var(--dark); display: block; }
.stat-num span { color: var(--gold); }
.stat-label { font-size: 0.8rem; color: var(--gray-400); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* Hero Visual */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  animation: fadeInRight 0.8s 0.2s ease both;
}
.battery-showcase {
  position: relative; width: 340px; height: 400px;
}
.battery-card-main {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 220px; height: 320px;
  background: linear-gradient(145deg, #0D1B2E, #1A2A3E);
  border-radius: 20px; border: 2px solid rgba(26,60,110,0.5);
  box-shadow: 0 20px 80px rgba(0,0,0,0.3), 0 0 60px rgba(26,60,110,0.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; padding: 1.5rem;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translate(-50%,-50%) translateY(0)} 50%{transform:translate(-50%,-50%) translateY(-15px)} }
.battery-bolt { font-size: 3.5rem; filter: drop-shadow(0 0 20px rgba(46,93,166,0.9)); animation: pulse-glow 2s ease-in-out infinite; }
@keyframes pulse-glow { 0%,100%{filter:drop-shadow(0 0 20px rgba(46,93,166,0.8))} 50%{filter:drop-shadow(0 0 40px rgba(46,93,166,1))} }
.battery-info { text-align: center; }
.battery-info .volt { font-family: 'Syne', 'Segoe UI', sans-serif; font-size: 2.2rem; font-weight: 800; color: #5B8FE8; }
.battery-info .type { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.battery-bar { width: 100%; height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.battery-fill { height: 100%; background: linear-gradient(90deg, #1A3C6E, #5B8FE8); border-radius: 4px; width: 85%; animation: charge 3s ease infinite alternate; }
@keyframes charge { from{width:65%} to{width:95%} }
.battery-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

.orbit-tag {
  position: absolute; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: 100px;
  padding: 0.4rem 0.9rem; font-size: 0.8rem; font-weight: 600;
  box-shadow: var(--shadow); white-space: nowrap;
  animation: orbit-float 3s ease-in-out infinite;
}
.tag-1 { top: 10%; left: -10%; animation-delay: 0s; }
.tag-2 { top: 25%; right: -15%; animation-delay: 0.5s; }
.tag-3 { bottom: 25%; left: -15%; animation-delay: 1s; }
.tag-4 { bottom: 10%; right: -5%; animation-delay: 1.5s; }
@keyframes orbit-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 2rem; }
}

/* ---- SECTION COMMONS ---- */
.section { padding: 6rem 2rem; }
.section-alt { background: var(--gray-100); }
.container { max-width: 1300px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold-dark); margin-bottom: 1rem;
}
.section-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--gold); }
.section-title { margin-bottom: 1rem; }
.section-title span { color: var(--gold); }
.section-desc { max-width: 600px; font-size: 1.05rem; margin-bottom: 3rem; }
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto 3rem; }

/* ---- PRODUCTS SECTION ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 2rem; position: relative; overflow: hidden;
  transition: var(--transition); cursor: pointer;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(245,166,35,0.3); }
.product-card:hover::before { transform: scaleX(1); }
.product-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--gold); color: var(--black);
  font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.6rem;
  border-radius: 100px; font-family: 'Syne', 'Segoe UI', Arial, sans-serif;
}
.product-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.product-name { font-size: 1.4rem; margin-bottom: 0.25rem; }
.product-specs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.spec-chip {
  background: var(--gray-100); color: var(--gray-600);
  font-size: 0.8rem; font-weight: 600; padding: 0.3rem 0.7rem;
  border-radius: 100px;
}
.product-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gold-dark); font-weight: 700; font-size: 0.9rem; margin-top: 1rem;
  font-family: 'Syne', 'Segoe UI', Arial, sans-serif; transition: var(--transition);
}
.product-link:hover { gap: 0.75rem; }

/* ---- FEATURES ---- */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem;
}
.feature-card {
  padding: 2rem; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.5rem;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }

/* ---- BMS SPECS ---- */
.specs-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.specs-table { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); }
.specs-table table { width: 100%; border-collapse: collapse; }
.specs-table th {
  background: var(--dark); color: var(--gold);
  font-family: 'Syne', 'Segoe UI', Arial, sans-serif; font-size: 0.85rem; text-align: left;
  padding: 1rem 1.25rem;
}
.specs-table td { padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--gray-200); font-size: 0.9rem; }
.specs-table td:first-child { font-weight: 600; color: var(--dark); width: 45%; }
.specs-table td:last-child { color: var(--gray-600); }
.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:hover td { background: rgba(245,166,35,0.03); }
.specs-highlights { display: flex; flex-direction: column; gap: 1.5rem; }
.highlight-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem; border-radius: var(--radius); background: var(--white);
  border: 1px solid var(--gray-200); transition: var(--transition);
}
.highlight-item:hover { border-color: rgba(245,166,35,0.3); box-shadow: var(--shadow); }
.hi-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  background: rgba(245,166,35,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.hi-text h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.hi-text p { font-size: 0.9rem; margin: 0; }
@media(max-width:768px){ .specs-layout{grid-template-columns:1fr;} }

/* ---- WHY US ---- */
.why-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 1.25rem; }
.why-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem; background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-200); transition: var(--transition);
}
.why-item:hover { border-color: rgba(245,166,35,0.4); transform: translateX(6px); box-shadow: var(--shadow); }
.why-num {
  min-width: 40px; height: 40px; border-radius: 10px;
  background: var(--gold); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', 'Segoe UI', Arial, sans-serif; font-weight: 800; font-size: 1rem;
}
.why-text h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.why-text p { font-size: 0.9rem; margin: 0; }
.why-visual {
  background: linear-gradient(145deg, var(--dark), var(--gray-900));
  border-radius: var(--radius-lg); padding: 2.5rem;
  color: var(--white); position: relative; overflow: hidden;
}
.why-visual::before {
  content: ''; position: absolute;
  top: -50%; right: -30%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.warranty-badge {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; padding: 2rem; text-align: center; position: relative; z-index: 1;
}
.warranty-badge .big-num { font-family: 'Syne', 'Segoe UI', Arial, sans-serif; font-size: 5rem; font-weight: 800; color: var(--gold); line-height: 1; }
.warranty-badge .big-label { font-size: 1.3rem; font-weight: 600; }
.warranty-badge .big-sub { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.why-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; position: relative; z-index: 1; }
.perk { background: rgba(255,255,255,0.08); border-radius: 12px; padding: 1.25rem; text-align: center; }
.perk .perk-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.perk p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin: 0; }
@media(max-width:768px){ .why-grid{grid-template-columns:1fr;} }

/* ---- TESTIMONIALS ---- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testi-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 2rem; transition: var(--transition); position: relative;
}
.testi-card::before { content: '"'; font-family: 'Syne', 'Segoe UI', Arial, sans-serif; font-size: 5rem; color: var(--gold); opacity: 0.15; position: absolute; top: 0.5rem; left: 1.5rem; line-height: 1; }
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.testi-text { font-size: 0.95rem; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gray-200); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; color: var(--gold-dark); font-family: 'Syne', 'Segoe UI', Arial, sans-serif; }
.testi-name { font-weight: 700; font-size: 0.95rem; display: block; }
.testi-loc { font-size: 0.8rem; color: var(--gray-400); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--gray-900) 100%);
  border-radius: var(--radius-lg); padding: 4rem; text-align: center;
  position: relative; overflow: hidden; margin: 0 2rem 4rem;
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(245,166,35,0.12) 0%, transparent 60%); }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 2.5rem; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white { background: var(--white); color: var(--dark); font-family: 'Syne', 'Segoe UI', Arial, sans-serif; font-weight: 700; }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); font-family: 'Syne', 'Segoe UI', Arial, sans-serif; font-weight: 700; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark); color: var(--white);
  padding: 4rem 2rem 2rem; position: relative; overflow: hidden;
}
.footer-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-container {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: flex; align-items: center; gap: 0.5rem; font-family: 'Syne', 'Segoe UI', Arial, sans-serif; font-size: 1.4rem; font-weight: 800; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.badge { background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.25); color: rgba(255,255,255,0.8); font-size: 0.75rem; padding: 0.3rem 0.7rem; border-radius: 100px; }
.footer-nav h4 { font-family: 'Syne', 'Segoe UI', Arial, sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1.25rem; }
.footer-nav a { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 0.6rem; transition: var(--transition); }
.footer-nav a:hover { color: var(--gold); transform: translateX(4px); }
.footer-contact h4 { font-family: 'Syne', 'Segoe UI', Arial, sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1.25rem; }
.footer-contact p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 0.6rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-weight: 700; font-size: 0.8rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom {
  max-width: 1300px; margin: 0 auto; padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
@media(max-width:968px){
  .footer-container{grid-template-columns:1fr 1fr;}
  .footer-brand{grid-column:1/-1;}
}
@media(max-width:600px){
  .footer-container{grid-template-columns:1fr;}
  .footer-bottom{flex-direction:column;text-align:center;}
}

/* ---- BOTTOM NAV ---- */
.bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  border-top: 1px solid var(--gray-200);
  padding: 0.5rem 0; box-shadow: 0 -4px 30px rgba(0,0,0,0.08);
}
@media(max-width:768px){ .bottom-nav{display:flex;} }
.bottom-nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 0.4rem 0; color: var(--gray-400); transition: var(--transition);
}
.bottom-nav-item.active { color: var(--gold-dark); }
.bottom-nav-shop { color: var(--gold-dark); font-weight: 700; }
.bn-icon { font-size: 1.3rem; }
.bn-label { font-size: 0.65rem; font-weight: 600; font-family: 'Syne', 'Segoe UI', Arial, sans-serif; text-transform: uppercase; letter-spacing: 0.05em; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--gray-900) 100%);
  padding: calc(var(--nav-h) + 3rem) 2rem 4rem; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(245,166,35,0.1) 0%, transparent 60%); }
.page-hero h1 { color: var(--white); position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 1rem auto 0; position: relative; z-index: 1; font-size: 1.05rem; }

/* ---- TOOLS PAGE ---- */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.tool-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 2rem; transition: var(--transition);
}
.tool-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(245,166,35,0.3); }
.tool-card h3 { margin-bottom: 1.5rem; font-size: 1.2rem; }
.tool-input {
  display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem;
}
.tool-input label { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.tool-input input, .tool-input select {
  padding: 0.75rem 1rem; border: 2px solid var(--gray-200); border-radius: 10px;
  font-family: 'DM Sans', 'Segoe UI', Arial, sans-serif; font-size: 0.95rem; background: var(--white);
  transition: var(--transition); outline: none;
}
.tool-input input:focus, .tool-input select:focus { border-color: var(--gold); }
.tool-result {
  background: rgba(245,166,35,0.07); border: 1px solid rgba(245,166,35,0.2);
  border-radius: 10px; padding: 1rem; text-align: center; min-height: 60px;
  display: flex; align-items: center; justify-content: center;
}
.tool-result span { font-family: 'Syne', 'Segoe UI', Arial, sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--gold-dark); }
.btn-tool {
  width: 100%; padding: 0.75rem; background: var(--gold); color: var(--black);
  border: none; border-radius: 10px; font-family: 'Syne', 'Segoe UI', Arial, sans-serif; font-weight: 700;
  cursor: pointer; transition: var(--transition); font-size: 0.95rem;
}
.btn-tool:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* ---- GUIDE ---- */
.guide-layout { display: grid; grid-template-columns: 280px 1fr; gap: 3rem; align-items: start; }
.guide-sidebar { position: sticky; top: calc(var(--nav-h) + 1rem); }
.guide-nav { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.guide-nav h4 { padding: 1rem 1.25rem; background: var(--dark); color: var(--gold); font-family: 'Syne', 'Segoe UI', Arial, sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.guide-nav a { display: block; padding: 0.75rem 1.25rem; font-size: 0.9rem; color: var(--gray-600); border-bottom: 1px solid var(--gray-200); transition: var(--transition); }
.guide-nav a:last-child { border-bottom: none; }
.guide-nav a:hover, .guide-nav a.active { color: var(--gold-dark); background: rgba(245,166,35,0.05); padding-left: 1.5rem; }
.guide-section { margin-bottom: 3rem; }
.guide-section h2 { font-size: 1.5rem; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--gray-200); }
.guide-section h3 { font-size: 1.1rem; margin: 1.5rem 0 0.75rem; }
.guide-section p { margin-bottom: 0.75rem; }
.step-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.step-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.25rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
}
.step-num { min-width: 28px; height: 28px; background: var(--gold); color: var(--black); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.8rem; font-family: 'Syne', 'Segoe UI', Arial, sans-serif; }
.warning-box {
  background: rgba(245,166,35,0.08); border-left: 4px solid var(--gold);
  border-radius: 8px; padding: 1rem 1.25rem; margin: 1rem 0;
}
.warning-box strong { color: var(--gold-dark); }
@media(max-width:768px){ .guide-layout{grid-template-columns:1fr;} .guide-sidebar{position:static;} }

/* ---- DOCS ---- */
.docs-layout { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; }
.docs-sidebar { position: sticky; top: calc(var(--nav-h) + 1rem); }
.docs-nav { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.docs-nav h4 { padding: 1rem 1.25rem; background: var(--dark); color: var(--gold); font-family: 'Syne', 'Segoe UI', Arial, sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.docs-nav a { display: block; padding: 0.65rem 1.25rem; font-size: 0.88rem; color: var(--gray-600); border-bottom: 1px solid var(--gray-200); transition: var(--transition); }
.docs-nav a:hover { color: var(--gold-dark); background: rgba(245,166,35,0.05); }
.docs-section { margin-bottom: 2.5rem; }
.docs-section h2 { font-size: 1.3rem; margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--gray-200); }
.param-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; border-radius: 10px; overflow: hidden; border: 1px solid var(--gray-200); }
.param-table th { background: var(--dark); color: var(--gold); padding: 0.75rem 1rem; text-align: left; font-family: 'Syne', 'Segoe UI', Arial, sans-serif; font-size: 0.8rem; }
.param-table td { padding: 0.65rem 1rem; border-bottom: 1px solid var(--gray-200); }
.param-table tr:last-child td { border-bottom: none; }
.param-table tr:hover td { background: rgba(245,166,35,0.03); }
@media(max-width:768px){ .docs-layout{grid-template-columns:1fr;} .docs-sidebar{position:static;} }

/* ---- CONTACT & SURVEY ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.form-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2.5rem;
}
.form-card h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.form-card > p { margin-bottom: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.8rem 1rem; border: 2px solid var(--gray-200); border-radius: 10px;
  font-family: 'DM Sans', 'Segoe UI', Arial, sans-serif; font-size: 0.95rem; outline: none;
  transition: var(--transition); resize: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(245,166,35,0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%; padding: 0.9rem; background: var(--gold); color: var(--black);
  border: none; border-radius: 100px; font-family: 'Syne', 'Segoe UI', Arial, sans-serif; font-weight: 800;
  font-size: 1rem; cursor: pointer; transition: var(--transition);
}
.btn-submit:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,166,35,0.4); }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.info-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; transition: var(--transition);
}
.info-card:hover { border-color: rgba(245,166,35,0.3); box-shadow: var(--shadow); }
.info-icon { font-size: 1.5rem; }
.info-text h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.info-text p { font-size: 0.9rem; margin: 0; }
@media(max-width:768px){ .contact-layout{grid-template-columns:1fr;} .form-row{grid-template-columns:1fr;} }

/* ---- ABOUT ---- */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mission-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 2.5rem; transition: var(--transition);
}
.mission-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(245,166,35,0.3); }
.mission-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.team-card { text-align: center; padding: 2rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-family: 'Syne', 'Segoe UI', Arial, sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--black); }
@media(max-width:600px){ .mission-grid{grid-template-columns:1fr;} }

/* ---- POLICIES ---- */
.policy-section { max-width: 860px; margin: 0 auto; }
.policy-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2.5rem; margin-bottom: 2rem; }
.policy-card h2 { font-size: 1.4rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.75rem; }
.policy-card h3 { font-size: 1.05rem; margin: 1.5rem 0 0.5rem; }
.policy-card ul { padding-left: 1.5rem; }
.policy-card li { margin-bottom: 0.5rem; font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

.reveal {
  opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- BREADCRUMB ---- */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--gray-400); margin-bottom: 0.5rem; }
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ---- SUCCESS MESSAGE ---- */
.success-msg { background: rgba(46,204,113,0.1); border: 1px solid rgba(46,204,113,0.3); border-radius: 10px; padding: 1rem 1.25rem; color: var(--accent-green); font-weight: 600; display: none; margin-bottom: 1rem; }
.success-msg.show { display: block; }

/* ===================================
   CONTACT & ENQUIRY PAGE STYLES
=================================== */

.contact-page-wrap {
  max-width: 3000px; margin: 0 auto; 
}

/* Top two-column layout */
.contact-top-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

/* Sidebar info panel */
.contact-sidebar {
  display: flex; flex-direction: column; gap: 1.25rem;
}
.contact-sidebar-header {
  background: linear-gradient(145deg, var(--dark), var(--gray-900));
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative; overflow: hidden;
}
.contact-sidebar-header::before {
  content:''; position:absolute; top:-40px; right:-40px;
  width:180px; height:180px;
  background: radial-gradient(circle, rgba(46,93,166,0.3) 0%, transparent 65%);
}
.contact-sidebar-header h2 { color: #fff; font-size:1.4rem; margin-bottom:0.5rem; position:relative;z-index:1; }
.contact-sidebar-header p  { color: rgba(255,255,255,0.6); font-size:0.9rem; position:relative;z-index:1; }
.contact-sidebar-header .response-badge {
  display:inline-flex; align-items:center; gap:0.4rem;
  background: rgba(46,204,113,0.15); border:1px solid rgba(46,204,113,0.35);
  color:#2ECC71; border-radius:100px; padding:0.3rem 0.8rem;
  font-size:0.78rem; font-weight:700; margin-top:1rem; position:relative;z-index:1;
}
.contact-sidebar-header .response-badge::before {
  content:''; width:7px; height:7px; border-radius:50%;
  background:#2ECC71; animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.contact-info-card {
  background: #fff; border:1px solid var(--gray-200);
  border-radius: var(--radius); padding:1.25rem 1.5rem;
  display:flex; gap:1rem; align-items:flex-start;
  transition: var(--transition);
}
.contact-info-card:hover {
  border-color: rgba(26,60,110,0.3);
  box-shadow: 0 4px 20px rgba(26,60,110,0.08);
  transform: translateX(4px);
}
.ci-icon {
  width:44px; height:44px; flex-shrink:0; border-radius:11px;
  background: rgba(26,60,110,0.08); border:1px solid rgba(26,60,110,0.15);
  display:flex; align-items:center; justify-content:center; font-size:1.2rem;
}
.ci-body h4 { font-size:0.9rem; color:var(--dark); margin-bottom:0.2rem; }
.ci-body p, .ci-body a {
  font-size:0.875rem; color:var(--gray-600); margin:0;
  transition: var(--transition);
}
.ci-body a:hover { color: var(--gold-light); }

/* Hours card */
.hours-card {
  background: rgba(26,60,110,0.05); border:1px solid rgba(26,60,110,0.12);
  border-radius: var(--radius); padding:1.25rem 1.5rem;
}
.hours-card h4 { font-size:0.9rem; color:var(--dark); margin-bottom:0.75rem; display:flex; align-items:center; gap:0.5rem; }
.hours-row { display:flex; justify-content:space-between; font-size:0.85rem; padding:0.4rem 0; border-bottom:1px solid rgba(26,60,110,0.08); }
.hours-row:last-child { border-bottom:none; }
.hours-row span:first-child { color:var(--gray-600); }
.hours-row span:last-child  { font-weight:600; color:var(--dark); }
.hours-row.today span:last-child { color:#2ECC71; }

/* Main enquiry form card */
.enquiry-form-card {
  background: #fff; border:1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding:2.5rem;
  box-shadow: 0 2px 30px rgba(26,60,110,0.06);
}
.enquiry-form-card .form-head {
  display:flex; align-items:center; gap:1rem; margin-bottom:2rem;
  padding-bottom:1.25rem; border-bottom:2px solid var(--gray-100);
}
.form-head-icon {
  width:52px; height:52px; border-radius:14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display:flex; align-items:center; justify-content:center; font-size:1.4rem;
  flex-shrink:0;
}
.form-head h2 { font-size:1.35rem; margin-bottom:0.15rem; }
.form-head p  { font-size:0.85rem; color:var(--gray-400); margin:0; }

/* Form fields */
.frow { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.fgroup { display:flex; flex-direction:column; gap:0.45rem; margin-bottom:1.1rem; }
.fgroup label {
  font-size:0.82rem; font-weight:700; color:var(--dark);
  text-transform:uppercase; letter-spacing:0.04em;
}
.fgroup label span { color:#E74C3C; margin-left:2px; }
.fgroup input, .fgroup select, .fgroup textarea {
  padding: 0.78rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-family: 'DM Sans', 'Segoe UI', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: var(--transition);
  resize: vertical;
}
.fgroup input::placeholder,
.fgroup textarea::placeholder { color: var(--gray-400); }
.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(26,60,110,0.08);
  background: #FAFCFF;
}
.fgroup input.error, .fgroup select.error, .fgroup textarea.error {
  border-color: #E74C3C;
  box-shadow: 0 0 0 4px rgba(231,76,60,0.08);
}
.field-error { font-size:0.78rem; color:#E74C3C; display:none; margin-top:2px; }
.field-error.show { display:block; }

/* Subject chips */
.subject-chips {
  display: flex; flex-wrap:wrap; gap:0.5rem; margin-bottom:1.1rem;
}
.subject-chip {
  padding: 0.45rem 0.95rem;
  border:2px solid var(--gray-200); border-radius:100px;
  font-size:0.82rem; font-weight:600; cursor:pointer;
  transition: var(--transition); background:#fff; color:var(--gray-600);
  font-family: 'DM Sans', 'Segoe UI', Arial, sans-serif;
}
.subject-chip:hover   { border-color: var(--gold-light); color: var(--gold-light); }
.subject-chip.selected{
  border-color: var(--gold); background: rgba(26,60,110,0.07);
  color: var(--gold); font-weight:700;
}
.chips-label { font-size:0.82rem; font-weight:700; color:var(--dark); text-transform:uppercase; letter-spacing:0.04em; margin-bottom:0.45rem; display:block; }

/* Rating stars */
.rating-wrap { display:flex; gap:0.4rem; margin-bottom:1.1rem; }
.star-btn {
  font-size:1.6rem; background:none; border:none; cursor:pointer;
  transition: transform 0.15s ease; color: var(--gray-200); line-height:1;
}
.star-btn.lit   { color: #F5C518; }
.star-btn:hover { transform: scale(1.2); }

/* File upload */
.file-upload-wrap {
  border: 2px dashed var(--gray-200); border-radius:10px;
  padding:1.25rem; text-align:center; cursor:pointer;
  transition: var(--transition); position:relative; margin-bottom:1.1rem;
}
.file-upload-wrap:hover,
.file-upload-wrap.dragover { border-color: var(--gold-light); background: rgba(26,60,110,0.04); }
.file-upload-wrap input[type="file"] {
  position:absolute; inset:0; opacity:0; cursor:pointer; width:100%; height:100%;
}
.file-upload-wrap p { font-size:0.875rem; color:var(--gray-400); margin:0; }
.file-upload-wrap strong { color:var(--gold-light); }
.file-name { font-size:0.82rem; color:var(--gray-600); margin-top:0.4rem; }

/* Newsletter toggle */
.newsletter-toggle {
  display:flex; align-items:flex-start; gap:0.75rem; margin-bottom:1.5rem;
  padding:1rem 1.25rem; background:rgba(26,60,110,0.04);
  border:1px solid rgba(26,60,110,0.1); border-radius:10px; cursor:pointer;
}
.newsletter-toggle input[type="checkbox"] { margin-top:2px; accent-color: var(--gold-light); width:16px; height:16px; flex-shrink:0; }
.newsletter-toggle p { font-size:0.875rem; color:var(--gray-600); margin:0; }
.newsletter-toggle strong { color:var(--dark); }

/* Submit button */
.btn-enquiry-submit {
  width:100%; padding:1rem; border:none; border-radius:100px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color:#fff; font-family:'Syne','Segoe UI',Arial,sans-serif;
  font-weight:800; font-size:1rem; cursor:pointer;
  transition: var(--transition); display:flex; align-items:center;
  justify-content:center; gap:0.6rem; letter-spacing:0.02em;
  box-shadow: 0 6px 25px rgba(26,60,110,0.3);
}
.btn-enquiry-submit:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(26,60,110,0.4);
}
.btn-enquiry-submit:disabled { opacity:0.65; cursor:not-allowed; transform:none; }
.btn-spinner {
  width:18px; height:18px; border:2px solid rgba(255,255,255,0.4);
  border-top-color:#fff; border-radius:50%; animation: spin 0.7s linear infinite; display:none;
}
@keyframes spin { to{transform:rotate(360deg)} }
.btn-enquiry-submit.loading .btn-spinner { display:block; }
.btn-enquiry-submit.loading .btn-label  { display:none; }

/* Success & error banners */
.form-banner {
  display:none; padding:1rem 1.25rem; border-radius:12px;
  margin-bottom:1.5rem; font-weight:600; font-size:0.95rem;
  align-items:center; gap:0.75rem;
}
.form-banner.show { display:flex; }
.form-banner.success {
  background:rgba(46,204,113,0.1); border:1px solid rgba(46,204,113,0.3); color:#1A8A4A;
}
.form-banner.error-banner {
  background:rgba(231,76,60,0.08); border:1px solid rgba(231,76,60,0.3); color:#C0392B;
}

/* FAQ accordion */
.faq-section { margin-top:2.5rem; }
.faq-section h2 { font-size:1.4rem; margin-bottom:1.5rem; }
.accordion { display:flex; flex-direction:column; gap:0.75rem; }
.acc-item {
  background:#fff; border:1px solid var(--gray-200); border-radius:var(--radius);
  overflow:hidden; transition: var(--transition);
}
.acc-item:hover { border-color:rgba(26,60,110,0.25); }
.acc-header {
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:1.1rem 1.5rem; background:none; border:none; cursor:pointer;
  font-family:'DM Sans','Segoe UI',Arial,sans-serif; font-size:0.95rem;
  font-weight:600; color:var(--dark); text-align:left; gap:1rem;
}
.acc-icon {
  width:28px; height:28px; flex-shrink:0; border-radius:50%;
  background:rgba(26,60,110,0.08); display:flex; align-items:center;
  justify-content:center; font-size:1rem; transition: transform 0.3s ease;
  color:var(--gold-light);
}
.acc-item.open .acc-icon { transform:rotate(45deg); }
.acc-body {
  max-height:0; overflow:hidden; transition: max-height 0.35s ease, padding 0.3s ease;
  padding:0 1.5rem;
}
.acc-body p { font-size:0.9rem; color:var(--gray-600); padding-bottom:1.1rem; margin:0; }
.acc-item.open .acc-body { max-height:300px; }

/* Map placeholder */
.map-placeholder {
  background: linear-gradient(145deg, var(--dark), var(--gray-900));
  border-radius: var(--radius-lg); overflow:hidden;
  height:220px; display:flex; align-items:center; justify-content:center;
  position:relative; margin-top:1.25rem;
}
.map-placeholder::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at 50% 60%, rgba(46,93,166,0.25) 0%, transparent 65%);
}
.map-pin-wrap { text-align:center; position:relative; z-index:1; }
.map-pin-wrap .pin { font-size:3rem; animation: bounce-pin 2s ease-in-out infinite; }
@keyframes bounce-pin { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.map-pin-wrap p { color:rgba(255,255,255,0.7); font-size:0.9rem; margin-top:0.5rem; }

/* Responsive */
@media (max-width:900px) {
  .contact-top-grid { grid-template-columns:1fr;         display: block;
 }
  .frow { grid-template-columns:1fr; }
}