/* ============================
   ODASSON – Main Stylesheet
   ============================ */

:root {
  --navy: #0a1628;
  --blue: #1a3a6b;
  --accent: #2563c4;
  --accent-light: #3b82f6;
  --gold: #c8922a;
  --text: #1e2a3a;
  --text-light: #5a6a7e;
  --bg: #f8f9fc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(10,22,40,0.1);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================
   TOP INFO BAR
   ============================ */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  transition: transform 0.4s ease;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar.hidden-bar {
  transform: translateY(-100%);
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.top-bar-left a {
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  font-size: 0.78rem;
}

.top-bar-left a:hover { color: var(--white); }

.top-bar-left a svg {
  width: 13px; height: 13px;
  flex-shrink: 0;
}

.top-bar-toggle {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.5px;
}

.top-bar-toggle:hover { color: rgba(255,255,255,0.9); }

.top-bar-toggle svg {
  width: 12px; height: 12px;
  transition: transform 0.3s;
}

/* ============================
   NAVBAR
   ============================ */
#navbar {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: top 0.4s ease, box-shadow 0.3s ease;
}

#navbar.bar-hidden {
  top: 0;
}

#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(10,22,40,0.12);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--accent);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  gap: 4px;
}

.mobile-nav a {
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-nav a:hover { color: var(--accent); padding-left: 8px; }

.mobile-nav.open { display: flex; }

/* ============================
   HERO CAROUSEL
   ============================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 106px;
}

.slides-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77,0,0.175,1);
}

.slide {
  width: calc(100% / 3);
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #0a1628;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.75) 0%, rgba(26,58,107,0.45) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
  color: var(--white);
}

.slide-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.2s ease, transform 0.6s 0.2s ease;
}

.slide.active .slide-tag {
  opacity: 1; transform: translateY(0);
}

.slide-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s 0.4s ease, transform 0.6s 0.4s ease;
}

.slide.active .slide-content h1 {
  opacity: 1; transform: translateY(0);
}

.slide-content p {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.6s ease, transform 0.6s 0.6s ease;
}

.slide.active .slide-content p {
  opacity: 1; transform: translateY(0);
}

.slide-content .btn-primary {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.8s ease, transform 0.6s 0.8s ease;
  align-self: flex-start;
}

.slide.active .slide-content .btn-primary {
  opacity: 1; transform: translateY(0);
}

.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow:hover { background: rgba(255,255,255,0.3); }

.prev-arrow { left: 24px; }
.next-arrow { right: 24px; }

.hero-dots {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hdot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--white);
}

/* ============================
   BUTTONS
   ============================ */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
}

.hero .btn-primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid var(--accent);
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}

.btn-full { width: 100%; text-align: center; cursor: pointer; }

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

.stag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-hd h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.section-hd p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================
   PRODUCT PREVIEW
   ============================ */
.prod-preview {
  padding: 100px 0;
  background: var(--bg);
}

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

.pcard {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,22,40,0.06);
  transition: var(--transition);
  cursor: pointer;
}

.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.pcard-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pcard-img img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

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

.pcard-hover {
  position: absolute;
  inset: 0;
  background: rgba(37,99,196,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0;
  transition: var(--transition);
}

.pcard:hover .pcard-hover { opacity: 1; }

.pcard p {
  padding: 16px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

/* ============================
   WHY SECTION
   ============================ */
.why-section {
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text .stag { color: var(--gold); }

.why-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin: 12px 0 20px;
}

.why-text p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  font-size: 1rem;
}

.why-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.why-text ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.why-text ul li span {
  color: var(--gold);
  font-weight: 700;
}

.why-text .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.why-text .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wcard {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.wcard:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.wnum {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  margin-bottom: 8px;
}

.wtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.wdesc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

/* ============================
   CTA BAND
   ============================ */
.cta-band {
  background: var(--accent);
  padding: 80px 24px;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.cta-band .btn-primary {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}

.cta-band .btn-primary:hover {
  background: transparent;
  color: var(--white);
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.flogo {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}

.fl p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

.fl h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.fl a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: var(--transition);
}

.fl a:hover { color: var(--white); padding-left: 4px; }

.footer-btm {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 140px 0 80px;
  text-align: center;
  margin-top: 106px;
}

.page-hero .stag { color: var(--gold); }

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  margin: 12px 0;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}

/* ============================
   ABOUT PAGE
   ============================ */
.about-main {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text h2 {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-text blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  margin: 28px 0;
  background: #f0f5ff;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--blue);
  font-size: 1.05rem;
}

.about-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.about-stat {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.values-section {
  padding: 100px 0;
  background: var(--bg);
}

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

.vcard {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(10,22,40,0.06);
  transition: var(--transition);
}

.vcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.vicon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.vcard h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.vcard p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================
   PRODUCTS PAGE
   ============================ */
.prod-filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 70px;
  z-index: 100;
}

.prod-filter-bar .container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.fbtn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}

.fbtn:hover, .fbtn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.products-page {
  padding: 60px 0 100px;
  background: var(--bg);
}

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

.prod-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,22,40,0.06);
  display: grid;
  grid-template-columns: 240px 1fr;
  transition: var(--transition);
}

.prod-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.prod-item.hidden { display: none; }

.prod-item-img {
  position: relative;
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 220px;
}

.prod-item-img img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.prod-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.prod-badge.new { background: var(--accent); }
.prod-badge.hot { background: #e53e3e; }

.prod-item-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.prod-model {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}

.prod-item-info h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.prod-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
  flex: 1;
}

.prod-features li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
}

.prod-features li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: 700;
}

.prod-dim {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 16px;
}

/* ============================
   SUPPORT PAGE
   ============================ */
.support-placeholder {
  padding: 100px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.placeholder-box {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.placeholder-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.placeholder-box h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.placeholder-box p {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-section {
  padding: 80px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 36px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ci-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: #f0f5ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.ci-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.6;
}

.contact-form-wrap {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-form-wrap h2 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,196,0.1);
}

.form-group textarea { resize: vertical; }

.form-success {
  text-align: center;
  padding: 48px;
}

.success-icon { font-size: 3rem; margin-bottom: 16px; }

.form-success h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-success p { color: var(--text-light); }

.map-section { height: 300px; }

.map-placeholder {
  height: 100%;
  background: linear-gradient(135deg, #e8edf5 0%, #d5dce8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 14px 24px;
  border-radius: 100px;
  box-shadow: var(--shadow);
  font-size: 0.875rem;
  color: var(--navy);
  font-weight: 500;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-side { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { height: 85vh; min-height: 500px; }

  .slide-content { padding: 0 24px; }

  .why-inner { grid-template-columns: 1fr; gap: 48px; }

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

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

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .form-row { grid-template-columns: 1fr; }

  .prod-item { grid-template-columns: 1fr; }

  .prod-item-img { min-height: 180px; }

  .contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  .prod-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar-left a:not(:first-child) { display: none; }
  .hero { margin-top: 106px; }
  .page-hero { margin-top: 106px; }
}

/* ============================
   FLOATING ACTION BUTTONS
   ============================ */
.fab-group {
  position: fixed;
  bottom: 32px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.fab:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
}

.fab svg { width: 22px; height: 22px; }

.fab-email { background: var(--accent); color: white; }
.fab-phone { background: #16a34a; color: white; }
.fab-whatsapp { background: #25d366; color: white; }
.fab-top { background: var(--navy); color: white; cursor: pointer; border: none; font-size: 1rem; }

.fab-tooltip {
  position: absolute;
  right: 62px;
  background: rgba(10,22,40,0.88);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
}

.fab:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================
   NEW CONTACT PAGE
   ============================ */
.contact-hero-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: white;
  padding: 100px 0 60px;
  margin-top: 106px;
  text-align: center;
}

.contact-hero-strip .stag { color: var(--gold); }
.contact-hero-strip h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: white;
  margin: 12px 0;
}
.contact-hero-strip p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: white;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
  margin: -36px auto 0;
  max-width: 960px;
  position: relative;
  z-index: 10;
}

.contact-card {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}

.contact-card:last-child { border-right: none; }
.contact-card:hover { background: #f0f5ff; }

.contact-card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  transition: background 0.3s;
}

.contact-card:hover .contact-card-icon { background: var(--accent); }
.contact-card:hover .contact-card-icon svg { stroke: white; }

.contact-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.contact-card a, .contact-card p {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
  display: block;
}

.contact-card a:hover { color: var(--accent); }

.contact-main-section {
  padding: 80px 0 100px;
  background: var(--bg);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-block h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info-block > p {
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cdl-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cdl-icon {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1rem;
}

.cdl-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}

.cdl-value {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
}

.cdl-value a {
  color: var(--accent);
  font-weight: 600;
}

.contact-form-card {
  background: white;
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
}

.contact-form-card h2 {
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form-card > p {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .contact-cards-row { grid-template-columns: repeat(2, 1fr); }
  .contact-main-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px; }
}

@media (max-width: 540px) {
  .contact-cards-row { grid-template-columns: 1fr 1fr; }
}

/* ============================
   ADMIN STYLES
   ============================ */
.admin-body {
  background: #f1f5f9;
  font-family: 'DM Sans', sans-serif;
}

.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #1e4a9e 100%);
}

.admin-login-box {
  background: white;
  border-radius: 16px;
  padding: 52px 48px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}

.admin-login-logo {
  text-align: center;
  margin-bottom: 32px;
}

.admin-login-logo .logo { font-size: 2rem; display: inline-block; }

.admin-login-box h2 {
  text-align: center;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.admin-login-box .sub {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.admin-form-group {
  margin-bottom: 20px;
}

.admin-form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.admin-form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.admin-form-group input:focus { border-color: var(--accent); }

.admin-login-err {
  background: #fee2e2;
  color: #dc2626;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  margin-bottom: 18px;
  display: none;
}

.admin-login-err.show { display: block; }

/* Admin Dashboard */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--navy);
  color: white;
  padding: 0;
  position: fixed;
  top: 0; left: 0;
  width: 240px;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.admin-sidebar-logo {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-sidebar-logo .logo { font-size: 1.5rem; color: white; }
.admin-sidebar-logo p { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 4px; }

.admin-nav {
  padding: 16px 0;
  flex: 1;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
}

.admin-nav a:hover, .admin-nav a.active {
  background: rgba(255,255,255,0.1);
  color: white;
  padding-left: 26px;
}

.admin-nav a.active { border-left: 3px solid var(--gold); }

.admin-nav .nav-section {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 16px 20px 6px;
}

.admin-sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.admin-sidebar-footer a {
  color: rgba(255,255,255,0.55);
  display: block;
  margin-top: 6px;
  transition: color 0.2s;
}

.admin-sidebar-footer a:hover { color: white; }

.admin-content {
  margin-left: 240px;
  padding: 32px;
  min-height: 100vh;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.admin-topbar h1 {
  font-size: 1.6rem;
  color: var(--navy);
  font-family: 'Cormorant Garamond', serif;
}

.admin-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.admin-badge {
  background: var(--accent);
  color: white;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* Stats row */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.stat-card .sc-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.stat-card .sc-value {
  font-size: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: var(--navy);
}

.stat-card .sc-sub {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* Table */
.admin-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  margin-bottom: 24px;
}

.admin-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-card-header h3 {
  font-size: 1rem;
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.admin-card-body { padding: 0; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  padding: 12px 24px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.admin-table td {
  padding: 16px 24px;
  font-size: 0.875rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #f8fafc; }

.status-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
}

.status-active { background: #dcfce7; color: #16a34a; }
.status-inactive { background: #fee2e2; color: #dc2626; }
.status-draft { background: #fef3c7; color: #d97706; }

.btn-admin {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}

.btn-admin-primary { background: var(--accent); color: white; }
.btn-admin-primary:hover { background: #1d4ed8; }
.btn-admin-ghost { background: transparent; color: var(--text-light); border: 1px solid var(--border); }
.btn-admin-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-admin-danger { background: #fee2e2; color: #dc2626; }
.btn-admin-danger:hover { background: #dc2626; color: white; }

/* Modal */
.admin-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.admin-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.admin-modal {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.admin-modal-overlay.open .admin-modal { transform: translateY(0); }

.admin-modal-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-modal-header h3 {
  font-size: 1.2rem;
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-light);
  cursor: pointer;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.2s;
}

.modal-close:hover { background: var(--bg); color: var(--text); }

.admin-modal-body { padding: 28px; }

.admin-modal-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.admin-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.admin-form-group {
  margin-bottom: 18px;
}

.admin-form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  background: white;
}

.admin-form-group input:focus,
.admin-form-group select:focus,
.admin-form-group textarea:focus { border-color: var(--accent); }

.admin-form-group textarea { resize: vertical; min-height: 90px; }

.toggle-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.toggle-switch input { display: none; }

.toggle-track {
  width: 44px; height: 24px;
  background: var(--border);
  border-radius: 100px;
  position: relative;
  transition: background 0.3s;
}

.toggle-switch input:checked + .toggle-track { background: var(--accent); }

.toggle-track::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  background: white;
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: left 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-track::after { left: 23px; }

.features-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.features-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #eef2ff;
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.features-tag button {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  padding: 0;
}

.admin-view-section { display: none; }
.admin-view-section.active { display: block; }

.admin-search-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.admin-search-bar input {
  flex: 1;
  padding: 10px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.admin-search-bar input:focus { border-color: var(--accent); }

.prod-thumb {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: #f0f4f8;
  object-fit: contain;
  padding: 4px;
}

.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
