/* =============================================
   CNC MANUFACTURING CO. — MAIN STYLESHEET
   Theme: Dark Maroon (#4b0f1a) & White
   ============================================= */

/* --- CSS Variables --- */
:root {
  --maroon:       #4b0f1a;
  --maroon-dark:  #320a12;
  --maroon-mid:   #6b1525;
  --maroon-light: #8c1e30;
  --gold:         #c9a84c;
  --gold-light:   #e4c97e;
  --white:        #ffffff;
  --off-white:    #f8f4f2;
  --light-gray:   #e8e0dc;
  --mid-gray:     #9e8a84;
  --dark:         #1a0a0d;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Barlow', 'Segoe UI', sans-serif;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:    0 2px 12px rgba(75,15,26,0.12);
  --shadow-md:    0 8px 32px rgba(75,15,26,0.18);
  --shadow-lg:    0 20px 60px rgba(75,15,26,0.25);
}

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Barlow:wght@300;400;500;600;700&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; transition: color var(--transition); }

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

/* =============================================
   NAVBAR
   ============================================= */
.navbar-brand-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand-logo .brand-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--maroon-dark);
  flex-shrink: 0;
}

.navbar-brand-logo .brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  text-transform: uppercase;
}

.main-navbar {
  background: var(--maroon-dark) !important;
  border-bottom: 2px solid var(--maroon-light);
  padding: 14px 0;
  transition: all 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.main-navbar .nav-link {
  color: rgba(255,255,255,0.82) !important;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px !important;
  position: relative;
  transition: color var(--transition);
}

.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--gold) !important;
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
  width: 60%;
}

.navbar-toggler {
  border: 1.5px solid rgba(201,168,76,0.5) !important;
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201, 168, 76, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* =============================================
   HERO / CAROUSEL
   ============================================= */
.hero-carousel { position: relative; }

.hero-carousel .carousel-item {
  height: 620px;
  position: relative;
  overflow: hidden;
}

.hero-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
  transform: scale(1.04);
  transition: transform 6s ease;
}

.carousel-item.active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(50,10,18,0.7) 0%, rgba(75,15,26,0.3) 60%, transparent 100%);
  z-index: 1;
}

.hero-carousel .carousel-caption {
  z-index: 2;
  bottom: 50%;
  transform: translateY(50%);
  text-align: left;
  left: 8%;
  right: 8%;
}

.hero-carousel .carousel-caption h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.8s ease both;
}

.hero-carousel .carousel-caption .hero-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--maroon-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.hero-carousel .carousel-caption p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  max-width: 540px;
  margin-bottom: 2rem;
  font-weight: 300;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-carousel .carousel-caption .btn-hero {
  background: var(--gold);
  color: var(--maroon-dark);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 3px;
  border: none;
  transition: all var(--transition);
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-carousel .carousel-caption .btn-hero:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

.hero-carousel .carousel-caption .btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 32px;
  border-radius: 3px;
  transition: all var(--transition);
  margin-left: 14px;
}

.hero-carousel .carousel-caption .btn-hero-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.carousel-control-prev,
.carousel-control-next {
  width: 52px;
  height: 52px;
  background: rgba(75,15,26,0.7);
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.75;
  transition: opacity var(--transition);
  margin: 0 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover { opacity: 1; }

.carousel-indicators [data-bs-target] {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
  transition: all var(--transition);
  border: none;
}

.carousel-indicators .active {
  background: var(--gold);
  width: 48px;
}

/* =============================================
   SECTION COMMONS
   ============================================= */
section { padding: 90px 0; }

.section-badge {
  display: inline-block;
  color: var(--maroon);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  padding-left: 36px;
  margin-bottom: 12px;
}

.section-badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--maroon-dark);
  margin-bottom: 1rem;
}

.section-title span { color: var(--maroon); }

.title-divider {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--maroon-light));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* =============================================
   COMPANY INTRO STRIP
   ============================================= */
.intro-strip {
  background: var(--maroon-dark);
  padding: 60px 0;
}

.intro-strip .intro-stat {
  text-align: center;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.12);
  padding: 10px 0;
}

.intro-strip .intro-stat:last-child { border-right: none; }

.intro-strip .stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.intro-strip .stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

/* =============================================
   PRODUCTS SECTION (HOME)
   ============================================= */
.products-home { background: var(--off-white); }

.product-card-home {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  border-bottom: 3px solid transparent;
}

.product-card-home:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
}

.product-card-home .product-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.product-card-home .product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card-home:hover .product-img-wrap img {
  transform: scale(1.07);
}

.product-card-home .product-img-wrap .cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--maroon);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}

.product-card-home .card-body {
  padding: 24px 22px 20px;
}

.product-card-home .card-body h5 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--maroon-dark);
  margin-bottom: 0.6rem;
}

.product-card-home .card-body p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.btn-maroon {
  background: var(--maroon);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 3px;
  border: none;
  transition: all var(--transition);
  display: inline-block;
}

.btn-maroon:hover {
  background: var(--maroon-light);
  color: var(--white);
  transform: translateX(3px);
}

.btn-gold {
  background: var(--gold);
  color: var(--maroon-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 3px;
  border: none;
  transition: all var(--transition);
  display: inline-block;
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

.btn-outline-maroon {
  background: transparent;
  color: var(--maroon);
  border: 2px solid var(--maroon);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 3px;
  transition: all var(--transition);
  display: inline-block;
}

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

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us { background: var(--white); }

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border-radius: 6px;
  transition: all var(--transition);
  height: 100%;
  border: 1px solid transparent;
}

.feature-item:hover {
  background: var(--off-white);
  border-color: var(--light-gray);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--gold);
  box-shadow: 0 4px 16px rgba(75,15,26,0.25);
}

.feature-item h5 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--maroon-dark);
  margin-bottom: 0.4rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin: 0;
  line-height: 1.65;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 50%, var(--maroon-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(201,168,76,0.07);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.8rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 300;
}

/* =============================================
   FOOTER
   ============================================= */
.main-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand .fi {
  background: var(--gold);
  color: var(--dark);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 1rem;
}

.footer-tagline {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.4rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact-item .fc-icon {
  width: 32px;
  height: 32px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.82rem;
}

.footer-contact-item p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
}

.footer-bottom .gold { color: var(--gold); }

/* =============================================
   PAGE HERO BANNER (Inner Pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(201,168,76,0.05);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.page-hero .breadcrumb-item { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.page-hero .breadcrumb-item.active { color: var(--gold); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb-item a:hover { color: var(--gold); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro { padding: 90px 0; }

.about-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -14px;
  left: -14px;
  right: 14px;
  bottom: 14px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}

.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.about-exp-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--maroon-dark);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 16px 22px;
  text-align: center;
  color: var(--white);
}

.about-exp-badge .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.about-exp-badge .lbl {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.mission-vision { background: var(--off-white); }

.mv-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 30px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--maroon);
  transition: all var(--transition);
}

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

.mv-card .mv-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.mv-card h4 {
  font-family: var(--font-display);
  color: var(--maroon-dark);
  margin-bottom: 0.8rem;
}

.mv-card p {
  color: var(--mid-gray);
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0;
}

.team-section { background: var(--white); }

.timeline-wrap { padding: 90px 0; background: var(--off-white); }

.timeline { position: relative; max-width: 800px; margin: 0 auto; }

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--maroon-light));
  transform: translateX(-50%);
}

.tl-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 30px);
  margin-bottom: 40px;
  position: relative;
}

.tl-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 30px);
}

.tl-item::before {
  content: attr(data-year);
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  background: var(--maroon);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.tl-card {
  background: var(--white);
  border-radius: 6px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  max-width: 300px;
  border-left: 3px solid var(--gold);
}

.tl-card h6 {
  font-family: var(--font-display);
  color: var(--maroon-dark);
  margin-bottom: 0.3rem;
}

.tl-card p {
  font-size: 0.85rem;
  color: var(--mid-gray);
  margin: 0;
}

/* =============================================
   PRODUCTS PAGE
   ============================================= */
.products-filter {
  background: var(--off-white);
  padding: 30px 0;
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 71px;
  z-index: 100;
}

.filter-btn {
  background: transparent;
  border: 1.5px solid var(--light-gray);
  color: var(--mid-gray);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition);
  margin: 4px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
}

.products-grid { background: var(--white); padding: 70px 0; }

.product-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.product-card .pc-img {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.product-card .pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.product-card:hover .pc-img img { transform: scale(1.08); }

.product-card .pc-img .pc-category {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--maroon);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.product-card .pc-body {
  padding: 24px 22px 22px;
}

.product-card .pc-body h5 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--maroon-dark);
  margin-bottom: 0.5rem;
}

.product-card .pc-body .pc-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
}

.product-card .pc-body .pc-specs li {
  font-size: 0.84rem;
  color: var(--mid-gray);
  padding: 3px 0;
  padding-left: 18px;
  position: relative;
}

.product-card .pc-body .pc-specs li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.product-card .pc-body p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.product-card .pc-footer {
  padding: 14px 22px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--light-gray);
}

.product-card .pc-footer .inquiry-btn {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--maroon);
  background: transparent;
  border: 1.5px solid var(--maroon);
  padding: 6px 18px;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition);
}

.product-card .pc-footer .inquiry-btn:hover {
  background: var(--maroon);
  color: var(--white);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page { padding: 90px 0; }

.contact-info-card {
  background: var(--maroon-dark);
  border-radius: 10px;
  padding: 40px 32px;
  height: 100%;
  color: var(--white);
}

.contact-info-card h4 {
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-info-card .sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.ci-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}

.ci-item .ci-icon {
  width: 42px;
  height: 42px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.95rem;
}

.ci-item .ci-text strong {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.ci-item .ci-text p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.social-links { display: flex; gap: 10px; margin-top: 2rem; }

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.contact-form-card {
  background: var(--white);
  border-radius: 10px;
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
}

.contact-form-card h4 {
  font-family: var(--font-display);
  color: var(--maroon-dark);
  margin-bottom: 0.4rem;
}

.contact-form-card .sub {
  color: var(--mid-gray);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--maroon-dark);
  margin-bottom: 0.4rem;
}

.form-control {
  border: 1.5px solid var(--light-gray);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--dark);
  transition: all var(--transition);
  background: var(--off-white);
}

.form-control:focus {
  border-color: var(--maroon-light);
  box-shadow: 0 0 0 3px rgba(75,15,26,0.1);
  background: var(--white);
  outline: none;
}

.form-control::placeholder { color: var(--mid-gray); }

.map-section { padding: 0; }

.map-section iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
  filter: sepia(0.15) saturate(0.85);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Scroll reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   UTILITIES
   ============================================= */
.bg-maroon      { background-color: var(--maroon) !important; }
.bg-maroon-dark { background-color: var(--maroon-dark) !important; }
.bg-off-white   { background-color: var(--off-white) !important; }
.text-maroon    { color: var(--maroon) !important; }
.text-gold      { color: var(--gold) !important; }

/* =============================================
   RESPONSIVE TWEAKS
   ============================================= */
@media (max-width: 991.98px) {
  .hero-carousel .carousel-item  { height: 520px; }
  .hero-carousel .carousel-caption { left: 5%; right: 5%; }
  .timeline::before { left: 16px; }
  .tl-item,
  .tl-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50px;
  }
  .tl-item::before { left: 0; transform: none; }
  section { padding: 70px 0; }
}

@media (max-width: 767.98px) {
  .hero-carousel .carousel-item  { height: 440px; }
  .hero-carousel .carousel-caption h2 { font-size: 1.8rem; }
  .intro-strip .intro-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px 0; }
  .about-img-wrap img { height: 280px; }
  .about-img-wrap::before { display: none; }
  .contact-form-card { padding: 26px 20px; }
  .contact-info-card { padding: 28px 22px; margin-bottom: 24px; }
  .hero-carousel .carousel-caption .btn-hero-outline { display: none; }
}

@media (max-width: 575.98px) {
  .hero-carousel .carousel-item { height: 380px; }
  .cta-banner { padding: 50px 0; }
  .main-footer { padding: 50px 0 0; }
}
