/* ============================================================
   IMPORT EXPORT WEBSITE — GLOBAL STYLES
   ============================================================ */

/* CSS Custom Properties */
:root {
  --navy: #0a1628;
  --navy-light: #112240;
  --navy-mid: #1a3a5c;
  --gold: #c9a84c;
  --gold-light: #e0c06a;
  --gold-dark: #a8872e;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --light-gray: #f0f2f5;
  --mid-gray: #8892a4;
  --dark-gray: #2d3748;
  --text: #2d3748;
  --text-light: #6b7280;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.18);
  --shadow-gold: 0 8px 30px rgba(201, 168, 76, 0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
  --container: 1200px;
  --header-h: 88px;
  --topbar-h: 42px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}
h4 {
  font-size: 1.2rem;
}
h5 {
  font-size: 1rem;
}
p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 90px 0;
}
.section-pad-sm {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}
.section-header .section-tag::before,
.section-header .section-tag::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.section-header .section-tag::before {
  right: 100%;
  margin-right: -20px;
}
.section-header .section-tag::after {
  left: 100%;
  margin-left: -20px;
}

.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn:hover::after {
  transform: translateX(100%);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-outline-white {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
  z-index: 1001;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.top-bar-left span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-left span i {
  color: var(--gold);
  font-size: 0.75rem;
}
.top-bar-left a {
  color: rgba(255, 255, 255, 0.75);
}
.top-bar-left a:hover {
  color: var(--gold);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-bar-right a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  transition: var(--transition);
}
.top-bar-right a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ============================================================
   MAIN HEADER
   ============================================================ */
.main-header {
  background: var(--white);
  /* height: var(--header-h); */
  /* min-height: var(--header-h); */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(10, 22, 40, 0.1);
  transition: all 0.3s ease;
  border-bottom: 2px solid rgba(201, 168, 76, 0.18);
}
.main-header.scrolled {
  box-shadow: 0 4px 28px rgba(10, 22, 40, 0.14);
  border-bottom-color: rgba(201, 168, 76, 0.28);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

/* ---- Logo: image only, no text ---- */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}
.logo-img {
  height: 68px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.logo-img:hover {
  opacity: 0.85;
  transform: scale(1.03);
}
.main-header.scrolled .logo-img {
  height: 54px;
}
/* ---- Legacy icon/text logo (kept for admin sidebar) ---- */
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}

/* Navigation */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-list > li {
  position: relative;
}
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.2px;
  position: relative;
}
.nav-list > li > a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-list > li > a:hover::after,
.nav-list > li > a.active::after {
  transform: scaleX(1);
}
.nav-list > li > a i {
  font-size: 0.6rem;
  transition: var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--gold);
}
.nav-list > li > a.active {
  color: var(--gold);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.has-dropdown:hover > a i {
  transform: rotate(180deg);
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.dropdown li:last-child a {
  border-bottom: none;
}
.dropdown li a:hover {
  color: var(--gold);
  background: var(--off-white);
  padding-left: 28px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-actions .btn-gold {
  padding: 12px 28px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 4px;
  white-space: nowrap;
  text-transform: uppercase;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.6);
  z-index: 998;
  backdrop-filter: blur(4px);
}
.nav-overlay.active {
  display: block;
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--navy);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  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.85) 0%,
    rgba(10, 22, 40, 0.55) 50%,
    rgba(10, 22, 40, 0.4) 100%
  );
  z-index: 1;
}
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 24px;
}
.slide-content .container {
  width: 100%;
}
.slide-text {
  max-width: 680px;
}
.slide-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s 0.3s ease,
    transform 0.6s 0.3s ease;
}
.slide.active .slide-tag {
  opacity: 1;
  transform: translateY(0);
}

.slide-text h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s 0.5s ease,
    transform 0.7s 0.5s ease;
}
.slide.active .slide-text h1 {
  opacity: 1;
  transform: translateY(0);
}

.slide-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s 0.7s ease,
    transform 0.7s 0.7s ease;
}
.slide.active .slide-text p {
  opacity: 1;
  transform: translateY(0);
}

.slide-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s 0.9s ease,
    transform 0.7s 0.9s ease;
}
.slide.active .slide-btns {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-50%) scale(1.1);
}
.slider-prev {
  left: 30px;
}
.slider-next {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}
.slider-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-indicator .scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-item:last-child {
  border-right: none;
}
.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
  font-size: 1.4rem;
  transition: var(--transition);
}
.stat-item:hover .stat-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotateY(360deg);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span {
  color: var(--gold);
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image-main:hover img {
  transform: scale(1.04);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.about-image-badge .badge-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.about-image-badge .badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content .section-tag {
  text-align: left;
  padding: 0;
}
.about-content .section-tag::before,
.about-content .section-tag::after {
  display: none;
}
.about-content h2 {
  text-align: left;
  margin-bottom: 20px;
}
.about-content p {
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.highlight-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.highlight-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.highlight-card i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.highlight-card h5 {
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 700;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid transparent;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gold);
}
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
  font-size: 2rem;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(10, 22, 40, 0.2);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  transform: rotateY(360deg);
}
.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.3rem;
}
.service-card p {
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.service-card .btn {
  font-size: 0.82rem;
  padding: 10px 24px;
}

/* ============================================================
   PRODUCT CATEGORIES
   ============================================================ */
.categories-section {
  background: var(--white);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img {
  transform: scale(1.08);
}
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.9) 0%,
    rgba(10, 22, 40, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  transition: var(--transition);
}
.category-card:hover .category-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.95) 0%,
    rgba(10, 22, 40, 0.5) 60%,
    rgba(10, 22, 40, 0.1) 100%
  );
}
.category-overlay h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}
.category-overlay span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
}
.category-overlay .cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.category-card:hover .cat-btn {
  opacity: 1;
  transform: translateY(0);
}
.category-overlay .cat-btn i {
  color: var(--gold);
}

/* WHY CHOOSE US */
.why-section {
  background: var(--off-white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid transparent;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold);
}
.why-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.12),
    rgba(201, 168, 76, 0.06)
  );
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.why-card:hover .why-card-icon {
  background: var(--gold);
  color: var(--navy);
}
.why-card-body h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.why-card-body p {
  font-size: 0.88rem;
  margin: 0;
}

/* TESTIMONIALS */
.testimonials-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 5%;
  font-family: var(--font-heading);
  font-size: 300px;
  color: rgba(201, 168, 76, 0.04);
  line-height: 1;
  pointer-events: none;
}
.testimonials-section .section-header h2 {
  color: var(--white);
}
.testimonials-section .section-header p {
  color: rgba(255, 255, 255, 0.6);
}
.testimonials-section .section-tag {
  color: var(--gold);
}
.testimonials-section .section-tag::before,
.testimonials-section .section-tag::after {
  background: var(--gold);
}

.testimonial-slider-wrap {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: 100%;
  padding: 0 60px;
  text-align: center;
}
.testimonial-quote {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 48px 48px 40px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-quote::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 44px;
}
.testimonial-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 28px;
}
.testimonial-stars {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 0.9rem;
  gap: 3px;
  display: flex;
  justify-content: center;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.testimonial-info .name {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-info .company {
  color: var(--gold);
  font-size: 0.82rem;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.t-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.t-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.t-dots {
  display: flex;
  gap: 8px;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}
.t-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* BLOG SECTION */
.blog-section {
  background: var(--white);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}
.blog-card-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 30px;
}
.blog-card-body {
  padding: 24px;
}
.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.blog-meta span {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-meta i {
  color: var(--gold);
}
.blog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-body h3 a {
  color: var(--navy);
}
.blog-card-body h3 a:hover {
  color: var(--gold);
}
.blog-card-body p {
  font-size: 0.88rem;
  margin-bottom: 16px;
}
.read-more {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.read-more:hover {
  gap: 10px;
}

/* INQUIRY CTA */
.inquiry-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.inquiry-section::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.inquiry-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.inquiry-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}
.inquiry-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.inquiry-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.inquiry-feature i {
  color: var(--gold);
  width: 20px;
}

.inquiry-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.inquiry-form-wrap h3 {
  margin-bottom: 24px;
  font-size: 1.3rem;
}
.form-group {
  margin-bottom: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  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(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group .error-msg {
  color: #e53e3e;
  font-size: 0.78rem;
  margin-top: 4px;
  display: none;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #e53e3e;
}
.form-group.has-error .error-msg {
  display: block;
}
.form-success {
    display: none;
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border: 1px solid rgba(201,168,76,0.4);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 24px 24px 24px 20px;
    margin-bottom: 20px;
    overflow: hidden;
}
/* Gold shimmer bar at top */
.form-success::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
/* Icon + title row */
.form-success .fs-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--navy);
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.form-success .fs-body { flex: 1; }
.form-success .fs-body strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.form-success .fs-body p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.6;
}

/* FOOTER */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
}
.footer-top {
  padding: 80px 0 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.footer-logo img {
  height: 68px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-about p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}
.footer-heading {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--gold);
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a i {
  font-size: 0.65rem;
  color: var(--gold);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-contact-info {
  list-style: none;
  margin-bottom: 20px;
}
.footer-contact-info li {
  display: flex;
  gap: 12px;
  font-size: 0.88rem;
  margin-bottom: 12px;
  align-items: flex-start;
}
.footer-contact-info i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-info a {
  color: rgba(255, 255, 255, 0.6);
}
.footer-contact-info a:hover {
  color: var(--gold);
}
.footer-map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-newsletter h5 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.newsletter-form {
  display: flex;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-form input:focus {
  border-color: var(--gold);
}
.newsletter-form button {
  padding: 10px 16px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  transition: var(--transition);
}
.newsletter-form button:hover {
  background: var(--gold-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-gold);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.4);
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 100px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1600&q=60")
    center/cover no-repeat;
  opacity: 0.08;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a {
  color: var(--gold);
}
.breadcrumb i {
  font-size: 0.65rem;
}

/* PRODUCT CARDS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.06);
}
.product-card-body {
  padding: 18px;
}
.product-card-cat {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.product-card-body h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.product-card-body p {
  font-size: 0.83rem;
  margin-bottom: 14px;
}
.product-card-body .btn {
  font-size: 0.8rem;
  padding: 8px 18px;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay i {
  color: var(--gold);
  font-size: 2rem;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover {
  background: var(--gold);
  color: var(--navy);
}
.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 8px;
}
.contact-info-card > p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-body h5 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.contact-detail-body p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}
.contact-detail-body a {
  color: rgba(255, 255, 255, 0.6);
}
.contact-detail-body a:hover {
  color: var(--gold);
}

/* ADMIN STYLES */
.admin-body {
  background: #f0f2f5;
  font-family: var(--font-body);
}
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.admin-login-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}
.admin-login-box .logo {
  justify-content: center;
  margin-bottom: 32px;
}
.admin-sidebar {
  width: 260px;
  background: var(--navy);
  min-height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.admin-sidebar-logo {
  padding: 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.admin-sidebar-logo img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.admin-nav {
  padding: 20px 0;
  flex: 1;
}
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav a i {
  width: 18px;
  text-align: center;
}
.admin-nav a:hover,
.admin-nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--gold);
}
.admin-main {
  margin-left: 260px;
  padding: 30px;
  min-height: 100vh;
  width: 100%;
}
.admin-topbar {
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.admin-topbar h1 {
  font-size: 1.3rem;
}
.admin-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.admin-stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 4px solid var(--gold);
}
.admin-stat-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
}
.admin-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.admin-stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th {
  background: var(--off-white);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  vertical-align: middle;
}
.admin-table tr:hover td {
  background: var(--off-white);
}
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
}
.badge-success {
  background: #f0fff4;
  color: #276749;
}
.badge-warning {
  background: #fffbeb;
  color: #92400e;
}
.badge-danger {
  background: #fff5f5;
  color: #c53030;
}
.btn-sm {
  padding: 6px 14px;
  font-size: 0.78rem;
}
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.alert-success {
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.4);
    border-left: 4px solid var(--gold);
    color: var(--navy);
    font-weight: 600;
}
.alert-danger {
    background: rgba(197,48,48,0.06);
    border: 1px solid rgba(197,48,48,0.3);
    border-left: 4px solid #c53030;
    color: #c53030;
    font-weight: 600;
}

/* ============================================================
   CERTIFICATION & MEMBERSHIP SECTION
   ============================================================ */
.cert-section { background: var(--off-white); }

/* Outer wrapper: arrows + viewport side by side */
.cert-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

/* Clipping viewport */
.cert-overflow {
    flex: 1;
    overflow: hidden;
}

/* Sliding row — NO flex-wrap so items stay in one line */
.cert-flex {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual card */
.cert-card {
    flex: 0 0 calc(25% - 18px);   /* 4 visible on desktop */
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: default;
}
.cert-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-6px);
}

/* Icon circle */
.cert-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    box-shadow: 0 6px 20px rgba(10,22,40,0.18);
    transition: var(--transition);
    flex-shrink: 0;
}
.cert-card:hover .cert-circle {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}

/* Title */
.cert-card strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    display: block;
}

/* Subtitle */
.cert-card span {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

/* Navigation arrows */
.cert-nav-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.cert-nav-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}

/* Dot indicators */
.cert-indicator-wrap {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}
.cert-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}
.cert-dot.active {
    background: var(--gold);
    transform: scale(1.35);
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
    .cert-card { flex: 0 0 calc(33.333% - 16px); }
}
@media (max-width: 768px) {
    .cert-card { flex: 0 0 calc(50% - 12px); }
    .cert-circle { width: 76px; height: 76px; font-size: 1.7rem; }
    .cert-nav-btn { width: 42px; height: 42px; font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .cert-card { flex: 0 0 calc(100%); }
    .cert-carousel-wrap { gap: 6px; }
    .cert-nav-btn { width: 36px; height: 36px; }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */

/* Position: fixed bottom-right, above back-to-top */
.whatsapp-float {
    position: fixed;
    bottom: 90px;           /* sits above the back-to-top button */
    right: 28px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    /* entrance animation */
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.whatsapp-float.visible {
    opacity: 1;
    transform: scale(1);
}

/* Green circle icon */
.wa-icon-wrap {
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}
.whatsapp-float:hover .wa-icon-wrap {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

/* Ripple pulse ring */
.wa-pulse {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(37,211,102,0.35);
    animation: waPulse 2s ease-out infinite;
    z-index: 1;
}
@keyframes waPulse {
    0%   { transform: scale(1);   opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Tooltip label */
.wa-tooltip {
    position: absolute;
    right: 66px;
    background: #fff;
    color: #111;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-body);
    padding: 6px 14px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    border-left: 3px solid #25D366;
}
.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #fff;
}
.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive — slightly smaller on mobile */
@media (max-width: 576px) {
    .whatsapp-float { bottom: 80px; right: 16px; }
    .wa-icon-wrap   { width: 50px; height: 50px; font-size: 1.55rem; }
    .wa-pulse       { width: 50px; height: 50px; }
    .wa-tooltip     { display: none; }
    .back-to-top    { bottom: 16px; right: 16px; }
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
    position: relative;
    z-index: 1100;
}

/* Trigger button */
.lang-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1;
}
.lang-trigger i.fa-globe { color: var(--gold); font-size: 0.9rem; }
.lang-trigger .lang-arrow {
    font-size: 0.6rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}
.lang-trigger:hover,
.lang-switcher.open .lang-trigger {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.lang-trigger:hover i,
.lang-switcher.open .lang-trigger i { color: var(--gold); }
.lang-switcher.open .lang-arrow { transform: rotate(180deg); }

/* Dropdown panel */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 230px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 48px rgba(10,22,40,0.16);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-header {
    padding: 10px 16px 8px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
}

/* Each language option */
.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    background: none;
    border: none;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease;
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover {
    background: rgba(201,168,76,0.08);
    color: var(--navy);
}
.lang-option.active {
    background: rgba(201,168,76,0.12);
    color: var(--navy);
}

.lang-flag { font-size: 1.2rem; flex-shrink: 0; }
.lang-name { flex: 1; }
.lang-check {
    color: var(--gold);
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.2s;
}
.lang-option.active .lang-check { opacity: 1; }

/* Responsive — hide label on small screens */
@media (max-width: 992px) {
    .lang-trigger .lang-current { display: none; }
    .lang-trigger { padding: 8px 10px; gap: 4px; }
}
@media (max-width: 576px) {
    .lang-dropdown { right: -10px; width: 210px; }
}

/* ============================================================
   TEAM GRID — About Page
   ============================================================ */

/* Centered flex row — cards auto-size, never over-stretch */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
    margin-top: 10px;
}

.team-card {
    flex: 0 0 260px;       /* fixed card width */
    max-width: 280px;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    padding-bottom: 24px;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,168,76,0.4);
}

/* Photo */
.team-img-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}
.team-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(10,22,40,0.25), transparent);
}
.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
    display: block;
}
.team-card:hover .team-img-wrap img {
    transform: scale(1.06);
}

/* Name */
.team-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 20px 16px 6px;
    line-height: 1.3;
}

/* Role */
.team-card p {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    margin: 0 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .team-card { flex: 0 0 220px; }
}
@media (max-width: 480px) {
    .team-grid { gap: 20px; }
    .team-card { flex: 0 0 calc(50% - 10px); max-width: 100%; }
}

/* ============================================================
   TESTIMONIALS — REDESIGNED (overrides above)
   ============================================================ */
.testimonials-section {
    background: linear-gradient(160deg, #0A1628 0%, #0d1f3c 100%) !important;
    position: relative;
    overflow: hidden;
}

/* Large decorative quote mark background */
.testimonials-section::before {
    content: '\201C' !important;
    font-family: var(--font-heading) !important;
    font-size: 360px !important;
    color: rgba(201,168,76,0.05) !important;
    position: absolute;
    top: -40px;
    left: -10px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Card */
.testimonial-quote {
    position: relative !important;
    background: rgba(255,255,255,0.055) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-top: 3px solid var(--gold) !important;
    border-radius: 16px !important;
    padding: 56px 56px 44px !important;
    max-width: 840px !important;
    margin: 0 auto !important;
    text-align: center !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3) !important;
    backdrop-filter: blur(4px);
}

/* Remove old pseudo before (quote circle) and replace with clean version */
.testimonial-quote::before {
    content: '"' !important;
    font-family: var(--font-heading) !important;
    font-weight: 900 !important;
    font-size: 2.2rem !important;
    position: absolute !important;
    top: -30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 60px !important;
    line-height: 60px !important;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: var(--navy) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-top: 4px !important;
    box-shadow: 0 8px 24px rgba(201,168,76,0.45) !important;
    border: 3px solid var(--navy) !important;
}

/* Stars */
.testimonial-stars {
    display: flex !important;
    justify-content: center !important;
    gap: 5px !important;
    font-size: 1.05rem !important;
    color: var(--gold) !important;
    margin-bottom: 24px !important;
}

/* Quote text */
.testimonial-text {
    color: rgba(255,255,255,0.9) !important;
    font-family: var(--font-heading) !important;
    font-size: 1.12rem !important;
    font-weight: 400 !important;
    font-style: italic !important;
    line-height: 1.85 !important;
    margin-bottom: 36px !important;
    letter-spacing: 0.2px;
}

/* Author row */
.testimonial-author {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px !important;
    padding-top: 28px !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
}

/* Avatar */
.testimonial-photo {
    width: 62px !important;
    height: 62px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 3px solid var(--gold) !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 16px rgba(201,168,76,0.35) !important;
}

/* Name + company */
.testimonial-info { text-align: left; }
.testimonial-info .name {
    color: var(--white) !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    font-family: var(--font-heading) !important;
    margin-bottom: 4px !important;
    display: block;
}
.testimonial-info .company {
    color: var(--gold) !important;
    font-size: 0.83rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    display: block;
}

/* Controls */
.testimonial-controls {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    margin-top: 48px !important;
}
.t-arrow {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255,255,255,0.2) !important;
    color: rgba(255,255,255,0.7) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: var(--transition) !important;
    font-size: 0.9rem !important;
    background: transparent !important;
}
.t-arrow:hover {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
    background: rgba(201,168,76,0.1) !important;
    transform: scale(1.1) !important;
}
.t-dots { display: flex !important; gap: 8px !important; align-items: center !important; }
.t-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.25) !important;
    cursor: pointer !important;
    border: none !important;
    padding: 0 !important;
    transition: var(--transition) !important;
}
.t-dot.active {
    background: var(--gold) !important;
    transform: scale(1.5) !important;
    box-shadow: 0 0 8px rgba(201,168,76,0.6) !important;
}

/* Card padding — responsive */
.testimonial-card { padding: 0 40px !important; min-width: 100% !important; }

@media (max-width: 768px) {
    .testimonial-quote { padding: 44px 28px 36px !important; }
    .testimonial-text  { font-size: 0.98rem !important; }
    .testimonial-card  { padding: 0 12px !important; }
}
@media (max-width: 480px) {
    .testimonial-quote  { padding: 40px 18px 30px !important; }
    .testimonial-author { flex-direction: column !important; }
    .testimonial-info   { text-align: center !important; }
}

/* ============================================================
   TESTIMONIALS — FINAL FIX (proper quote icon inside card)
   ============================================================ */

/* Remove broken pseudo quote circle entirely */
.testimonial-quote::before { display: none !important; }
.testimonial-quote::after  { display: none !important; }

/* Card wrapper */
.testimonial-card {
    min-width: 100% !important;
    padding: 0 30px !important;
}

/* The card itself */
.testimonial-quote {
    position: relative !important;
    background: rgba(255,255,255,0.07) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-top: none !important;
    border-radius: 20px !important;
    padding: 48px 56px 44px !important;
    max-width: 820px !important;
    margin: 0 auto !important;
    text-align: center !important;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3) !important;
    overflow: visible !important;
}

/* Gold quote icon — INSIDE the card, positioned at the top */
.tq-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -80px auto 32px;   /* pulls it up above the card top edge */
    font-size: 1.5rem;
    color: var(--navy);
    box-shadow: 0 8px 28px rgba(201,168,76,0.5);
    border: 4px solid #0A1628;  /* matches background — creates "floating" effect */
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

/* Extra top padding to account for the icon pulling up */
.testimonial-slider-wrap {
    padding-top: 44px !important;   /* space for the icon overflow */
}

/* Stars */
.testimonial-stars {
    display: flex !important;
    justify-content: center !important;
    gap: 5px !important;
    font-size: 1rem !important;
    color: var(--gold) !important;
    margin-bottom: 20px !important;
}

/* Quote text */
.testimonial-text {
    color: rgba(255,255,255,0.9) !important;
    font-family: var(--font-heading) !important;
    font-size: 1.1rem !important;
    font-style: italic !important;
    font-weight: 400 !important;
    line-height: 1.9 !important;
    margin-bottom: 32px !important;
    letter-spacing: 0.15px;
}

/* Author row */
.testimonial-author {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    padding-top: 28px !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
}

/* Avatar circle (initial) */
.testimonial-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 16px rgba(201,168,76,0.35);
    flex-shrink: 0;
}

/* Photo if available */
.testimonial-photo {
    width: 58px !important;
    height: 58px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 3px solid var(--gold) !important;
    box-shadow: 0 4px 16px rgba(201,168,76,0.3) !important;
    flex-shrink: 0 !important;
}

/* Name & company */
.testimonial-info { text-align: left !important; }
.testimonial-info .name {
    display: block !important;
    color: var(--white) !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    margin-bottom: 4px !important;
}
.testimonial-info .company {
    display: block !important;
    color: var(--gold) !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card   { padding: 0 12px !important; }
    .testimonial-quote  { padding: 40px 28px 36px !important; }
    .testimonial-text   { font-size: 0.97rem !important; }
    .tq-icon            { width: 54px; height: 54px; font-size: 1.3rem; margin: -72px auto 26px; }
}
@media (max-width: 480px) {
    .testimonial-author { flex-direction: column !important; }
    .testimonial-info   { text-align: center !important; }
    .testimonial-quote  { padding: 36px 18px 28px !important; }
}

/* ============================================================
   CERTIFICATION PAGE GRID
   ============================================================ */
.cert-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 10px;
}

.cert-page-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.cert-page-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-6px);
}

.cert-page-icon {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    box-shadow: 0 6px 20px rgba(10,22,40,0.18);
    transition: var(--transition);
    flex-shrink: 0;
}
.cert-page-card:hover .cert-page-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}

.cert-page-body { width: 100%; }
.cert-page-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.cert-issued-by {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
    display: block;
}
.cert-issued-by i { color: var(--gold); margin-right: 4px; }

.cert-valid {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--white);
    background: var(--navy);
    padding: 5px 14px;
    border-radius: 30px;
}
.cert-valid i { color: var(--gold); }
.cert-valid.cert-lifetime { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); }
.cert-valid.cert-lifetime i { color: var(--navy); }

/* Responsive */
@media (max-width: 1200px) { .cert-page-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .cert-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .cert-page-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SECURE FORM EXTRAS
   ============================================================ */

/* Form privacy note */
.form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.form-note i { color: var(--gold); font-size: 0.7rem; }

/* Char counter */
.char-count {
    display: block;
    text-align: right;
    font-size: 0.72rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* Rate limit alert */
.alert-danger i { margin-right: 6px; }

/* ============================================================
   FORM SUCCESS MESSAGE — themed navy/gold
   ============================================================ */

/* Slide-down entrance animation */
@keyframes successSlideIn {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.form-success[style*="display:flex"],
.form-success[style*="display: flex"] {
    animation: successSlideIn 0.4s ease forwards;
}

/* Pulsing gold ring on the icon */
@keyframes iconPop {
    0%   { transform: scale(0.7); opacity: 0; }
    70%  { transform: scale(1.12); }
    100% { transform: scale(1); opacity: 1; }
}
.form-success .fs-icon {
    animation: iconPop 0.5s 0.1s ease forwards;
    opacity: 0;
}

/* Make strong text in body gold */
.form-success .fs-body strong:first-child {
    letter-spacing: 0.3px;
}

/* On white background forms (inquiry-form-wrap), adjust text */
.inquiry-form-wrap .form-success .fs-body p {
    color: rgba(255,255,255,0.72);
}
