/* ============================================
   HORIZON EXIM — Main Stylesheet
   Colors: #1a1a1a (dark) | #c9a84c (gold) | #fff
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  --dark: #1a1a1a;
  --dark2: #111111;
  --dark3: #0a0a0a;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-dark: #a07830;
  --white: #ffffff;
  --grey: #aaaaaa;
  --light-bg: #f7f5f0;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark3); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--dark3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding: 7px 0;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left {
  display: flex;
  gap: 25px;
  align-items: center;
}
.top-bar-left a {
  color: var(--grey);
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
  letter-spacing: 0.3px;
}
.top-bar-left a:hover { color: var(--gold); }
.top-bar-left a i { color: var(--gold); font-size: 12px; }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-bar-right a {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  color: var(--gold);
  font-size: 12px;
  transition: all 0.3s;
}
.top-bar-right a:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ============================================
   HEADER / NAV
   ============================================ */
header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0;
  height: 85px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo img {
  height: 65px;
  width: 65px;
  object-fit: contain;
  border-radius: 50%;
}
.logo-text h1 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--white);
  letter-spacing: 2px;
  font-weight: 700;
  line-height: 1.1;
}
.logo-text span {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 5px;
}
nav ul li a {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--white);
  padding: 10px 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
nav ul li a:hover,
nav ul li a.active { color: var(--gold); }
nav ul li a:hover::after,
nav ul li a.active::after { width: calc(100% - 32px); }

.nav-btn {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 10px 22px !important;
  border-radius: 3px;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  font-size: 12px !important;
  transition: all 0.3s !important;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover {
  background: var(--white) !important;
  color: var(--dark) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  width: 25px; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ============================================
   PAGE HERO BANNER
   ============================================ */
.page-hero {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(201,168,76,0.03) 40px,
    rgba(201,168,76,0.03) 41px
  );
}
.page-hero h2 {
  font-family: var(--font-heading);
  font-size: 52px;
  color: var(--white);
  font-weight: 700;
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
}
.page-hero p {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
.gold-line {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 15px auto 0;
  position: relative;
  z-index: 1;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section { padding: 90px 0; }
.section-dark { background: var(--dark); }
.section-grey { background: var(--light-bg); }

.section-tag {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title.white { color: var(--white); }
.section-subtitle {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.8;
  max-width: 580px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}
.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}

/* ============================================
   HERO SLIDER (Homepage)
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 85px);
  min-height: 500px;
  overflow: hidden;
  background: var(--dark);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; }
.slide-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 7s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.4) 100%
  );
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.slide-inner {
  padding-left: 80px;
  max-width: 700px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.3s;
}
.slide.active .slide-inner {
  transform: translateY(0);
  opacity: 1;
}
.slide-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.slide-inner h2 {
  font-family: var(--font-heading);
  font-size: 68px;
  color: var(--white);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.slide-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 500px;
}
.slide-btns { display: flex; gap: 15px; flex-wrap: wrap; }

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 30px; height: 3px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.slider-dot.active {
  background: var(--gold);
  width: 50px;
}
.slider-arrows {
  position: absolute;
  bottom: 35px;
  right: 80px;
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-arrow {
  width: 46px; height: 46px;
  border: 1px solid rgba(201,168,76,0.5);
  background: rgba(26,26,26,0.6);
  color: var(--gold);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}
.slider-arrow:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ============================================
   STATS BAR (Homepage)
   ============================================ */
.stats-bar {
  background: var(--gold);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(26,26,26,0.15);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 600;
  margin-top: 5px;
  opacity: 0.8;
}

/* ============================================
   ABOUT SECTION (Homepage)
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--gold);
  padding: 25px;
  text-align: center;
  width: 140px; height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-img-badge span {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  display: block;
  line-height: 1;
}
.about-img-badge small {
  font-size: 11px;
  color: var(--dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 35px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature i {
  color: var(--gold);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.about-feature h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}
.about-feature p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
}

/* ============================================
   PRODUCTS SECTION (Homepage + Products Page)
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.product-card {
  background: var(--white);
  border: 1px solid #e8e0d0;
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
  group: true;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: var(--gold);
}
.product-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s;
  background: #e8e0d0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img-placeholder {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.product-card:hover .product-card-img { transform: scale(1.05); }
.product-card-body {
  padding: 25px;
}
.product-card-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.product-card-body h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.product-card-body p {
  font-size: 13.5px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 18px;
}
.product-card-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.product-card:hover .product-card-link { gap: 14px; }

/* ============================================
   WHY US SECTION
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.2);
}
.why-item {
  background: var(--dark);
  padding: 45px 30px;
  text-align: center;
  transition: background 0.3s;
}
.why-item:hover { background: #222; }
.why-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}
.why-item h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 700;
}
.why-item p {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--gold);
  padding: 70px 0;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 46px;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 15px;
}
.cta-section p {
  font-size: 16px;
  color: var(--dark);
  opacity: 0.8;
  margin-bottom: 35px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.4);
  background: transparent;
  color: var(--grey);
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #1a1a1a;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
  font-size: 30px;
  color: var(--dark);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border: 2px solid rgba(201,168,76,0.3);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 40px;
  color: var(--gold);
  cursor: pointer;
  line-height: 1;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 50px; height: 50px;
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--gold); color: var(--dark); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.contact-info > p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 35px;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  border: 1px solid #e8e0d0;
  transition: all 0.3s;
}
.contact-card:hover {
  border-color: var(--gold);
  box-shadow: 0 5px 20px rgba(201,168,76,0.1);
}
.contact-card-icon {
  width: 48px; height: 48px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--dark);
}
.contact-card-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.contact-card-text p,
.contact-card-text a {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  transition: color 0.3s;
}
.contact-card-text a:hover { color: var(--gold); }

/* Contact Form */
.contact-form-wrap {
  background: var(--dark);
  padding: 50px;
}
.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 35px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--white);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-full-grid img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.timeline {
  position: relative;
  padding-left: 30px;
  margin-top: 30px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 30px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 5px;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
}
.timeline-item h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 6px;
}
.timeline-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.team-card {
  text-align: center;
  padding: 40px 25px;
  border: 1px solid #e8e0d0;
  transition: all 0.3s;
}
.team-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}
.team-avatar {
  width: 90px; height: 90px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--dark);
}
.team-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 5px;
}
.team-card span {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   CERTIFICATE PAGE
   ============================================ */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.cert-card {
  border: 1px solid #e8e0d0;
  overflow: hidden;
  transition: all 0.3s;
  text-align: center;
}
.cert-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(201,168,76,0.1);
  transform: translateY(-5px);
}
.cert-card-img {
  width: 100%; height: 250px;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}
.cert-card-body {
  padding: 25px;
  background: var(--white);
}
.cert-card-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 8px;
}
.cert-card-body p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}
.cert-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-top: 12px;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-wrap {
  width: 100%;
  height: 420px;
  border: 2px solid rgba(201,168,76,0.3);
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) contrast(1.1);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark2);
  border-top: 2px solid var(--gold);
}
.footer-main {
  padding: 75px 0 50px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-logo img {
  height: 60px; width: 60px;
  object-fit: contain;
  border-radius: 50%;
}
.footer-logo-text h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 2px;
}
.footer-logo-text span {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.footer-about p {
  font-size: 14px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 14px;
  transition: all 0.3s;
  border-radius: 50%;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
}
.footer-divider {
  width: 40px; height: 2px;
  background: var(--gold);
  margin-bottom: 25px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 14px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.footer-links a i { color: var(--gold); font-size: 11px; }
.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.footer-contact-item i {
  color: var(--gold);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item p {
  font-size: 13.5px;
  color: #777;
  line-height: 1.6;
}
.footer-contact-item a {
  color: #777;
  transition: color 0.3s;
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  background: var(--dark3);
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer-bottom p {
  font-size: 13px;
  color: #555;
}
.footer-bottom span { color: var(--gold); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid,
  .about-full-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .products-grid,
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-img-badge { right: 0; bottom: -20px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar-left { display: none; }
  .hamburger { display: flex; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--dark);
    border-top: 1px solid rgba(201,168,76,0.3);
    padding: 20px 30px;
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 5px; }
  nav ul li a { padding: 12px 0; display: block; }
  nav ul li a::after { display: none; }
  .nav-btn { display: inline-block; margin-top: 10px; }
  header { position: relative; }
  .slide-inner { padding-left: 30px; padding-right: 30px; }
  .slide-inner h2 { font-size: 40px; }
  .hero-slider { height: 70vh; }
  .slider-controls,
  .slider-arrows { left: 20px; right: 20px; bottom: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid,
  .cert-grid,
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 30px; }
  .footer-main { grid-template-columns: 1fr; }
  .section-title { font-size: 32px; }
  .page-hero h2 { font-size: 36px; }
  .slide-btns { flex-direction: column; }
  .about-features { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 32px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* Success/Error messages */
.alert {
  padding: 14px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  border-left: 3px solid;
}
.alert-success {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: var(--gold);
}
.alert-error {
  background: rgba(255,50,50,0.1);
  border-color: #ff3232;
  color: #ff3232;
}
