/* ============================================
   Bizcofi - Custom Styles
   ============================================ */

/* ---- Preloader ---- */
.preloader-active { overflow: hidden; }
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #1a0800;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#preloader canvas { display: block; }
#pre-label {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 18px;
  margin-bottom: 0;
}

:root {
  --brown-dark:   #2C1100;
  --brown-mid:    #5C2D0E;
  --orange:       #c07015;
  --orange-light: #E8950B;
  --text-dark:    #2A2A2A;
  --text-muted:   #666666;
  --bg-light:     #FBF7F0;
  --white:        #FFFFFF;
}

/* ---- Global ---- */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  font-size: 1rem;
}

a { text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.text-orange { color: var(--orange) !important; }
.bg-brown    { background-color: var(--brown-dark) !important; }
.bg-light-warm { background-color: var(--bg-light) !important; }


/* ---- Button ---- */

@keyframes opacityFallbackOut {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes opacityFallbackIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/* Shared sweep base */
.btn-outline-light-custom,
.btn-outline-dark,
.btn-submit {
  position: relative;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  transition: color .3s cubic-bezier(.694, 0, .335, 1) !important;
}
.btn-outline-light-custom::before,
.btn-outline-dark::before,
.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
  -webkit-clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
  transition: clip-path .5s cubic-bezier(.165, .84, .44, 1),
              -webkit-clip-path .5s cubic-bezier(.165, .84, .44, 1);
  animation: opacityFallbackOut .5s step-end forwards;
}
.btn-outline-light-custom:hover::before,
.btn-outline-dark:hover::before,
.btn-submit:hover::before {
  clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
  -webkit-clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
  animation: opacityFallbackIn 0s step-start forwards;
}
.btn-outline-light-custom > span,
.btn-outline-dark > span,
.btn-submit > span {
  position: relative;
  z-index: 1;
}

/* btn-outline-light-custom — white border/text, sweep white, text turns dark */
.btn-outline-light-custom {
  border: 1px solid var(--white);
  color: var(--white);
  padding: 10px 28px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: .04em;
}
.btn-outline-light-custom::before { background: var(--orange); }
.btn-outline-light-custom:hover   { color: var(--white) !important; }

/* btn-outline-dark — dark border/text, sweep dark, text turns white */
.btn-outline-dark {
  border: 1px solid #000000 !important;
  color: #000000 !important;
  background: transparent !important;
  padding: 10px 30px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.875rem;
}
.btn-outline-dark::before { background: var(--orange); }
.btn-outline-dark:hover   { color: var(--white) !important; background: transparent !important; }

/* btn-orange (unchanged) */
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 10px 28px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: .04em;
  transition: background .2s;
}
.btn-orange:hover { background: var(--orange-light); color: var(--white); }

/* btn-outline-orange (unchanged) */
.btn-outline-orange {
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
  padding: 10px 30px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background .2s, color .2s;
}
.btn-outline-orange:hover { background: var(--orange); color: var(--white); }

/* btn-submit — orange bg, sweep dark brown, text stays white */
.btn-submit {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 11px 36px;
  border-radius: 4px;
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .04em;
  float: right;
}
.btn-submit::before { background: var(--brown-dark); }
.btn-submit:hover   { color: var(--white); }

/* ---- Navbar ---- */
.navbar {
  background: #c07015;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
  padding: 12px 0;
  transition: background .35s ease, box-shadow .35s ease;
}
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
}
.navbar.scrolled .navbar-nav .nav-link {
  color: var(--orange) !important;
  opacity: 1;
}
.navbar.scrolled .navbar-nav .nav-link:hover,
.navbar.scrolled .navbar-nav .nav-link.active {
  color: var(--orange) !important;
  opacity: 0.75;
}
.navbar.scrolled .navbar-nav .nav-link.active::after {
  background: var(--orange);
}
.navbar.scrolled .nav-social a {
  background: rgba(192,112,21,.1);
  color: var(--orange);
}
.navbar.scrolled .nav-social a:hover {
  background: var(--orange);
  color: #fff;
}
.navbar.scrolled .navbar-toggler-icon {
  filter: none;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -0.5px;
}

.navbar-brand span { color: #fff; opacity: .75; }

.navbar-logo {
  height: 44px;
  width: auto;
}

.navbar-nav .nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff !important;
  padding: 6px 10px !important;
  position: relative;
  opacity: .85;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
  opacity: 1;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10px; right: 10px;
  height: 2px;
  background: #fff;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.nav-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #4c2b09;
  color: #c07015;
  font-size: 1rem;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.nav-social a:hover {
  background: #fff;
  color: #4c2b09;
}

/* ---- WhatsApp Floating Button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float i { color: #fff; font-size: 1.6rem; }

/* ---- Page Hero Banner ---- */
.page-hero {
  padding: 180px 0 180px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('images/home-banner-01.jpg') center/cover no-repeat;
}
.page-hero--about::before {
  background-image: url('images/about-title-background.jpg');
}
.page-hero--catalogue::before {
  background-image: url('images/catalogue-title-background.jpg');
}
.page-hero--services::before {
  background-image: url('images/services-title-background.jpg');
}
.page-hero--halal::before {
  background-image: url('images/halal-title-background.jpg');
}
.page-hero--contact::before {
  background-image: url('images/contact-title-background.jpg');
}
.page-hero--news::before {
  background-image: url('images/news-title-background.jpg');
}
.page-hero h1 {
  color: var(--white);
  font-size: 2.5rem;
  position: relative;
}

/* ---- Home Hero ---- */
/* ---- Hero Slider (Owl Carousel) ---- */
.hero-slider { position: relative; }

.hero-slide {
  height: 88vh;
  background: center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-top: 16vh;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(30,10,0,.82) 0%, rgba(30,10,0,.55) 60%, rgba(30,10,0,.15) 100%);
}
.hero-slide .container { position: relative; z-index: 1; }

.slide-content h1 {
  font-size: 3rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.slide-content h1 span { color: var(--orange); }
.slide-content .hero-sub {
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 12px;
}
.slide-content .hero-desc {
  color: rgba(255,255,255,.78);
  margin-bottom: 28px;
}

/* Owl nav arrows */
.hero-slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.18) !important;
  border-radius: 50% !important;
  display: flex; align-items: center; justify-content: center;
  color: #fff !important;
  font-size: 1.2rem;
  transition: background .2s;
}
.hero-slider .owl-nav button:hover { background: rgba(255,255,255,.35) !important; }
.hero-slider .owl-nav .owl-prev { left: 16px; }
.hero-slider .owl-nav .owl-next { right: 16px; }

/* Owl dots */
.hero-slider .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
.hero-slider .owl-dot span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.45) !important;
  margin: 0 4px;
  transition: background .2s;
}
.hero-slider .owl-dot.active span { background: var(--orange) !important; }

/* ---- Section Commons ---- */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 6px;
}
.section-title .accent { color: var(--orange); }

/* ---- About Section (Home) ---- */
.about-section {
  padding: 80px 0;
  position: relative;
}

.about-section .about-text p {
  color: var(--text-muted);
  line-height: 1.85;
}

.product-img-wrap { text-align: center; }
.product-img-wrap img { max-width: 100%; height: auto; }


/* ---- Why Choose ---- */
.why-section {
  background: url('images/home-background-02.jpg') center/cover no-repeat;
  padding: 80px 0;
}
.why-card {
  text-align: center;
  padding: 32px 24px;
}
.why-icon {
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon img { width: 100px; object-fit: contain; }
.why-card h3,
.why-card h5 { margin-bottom: 10px; }
.why-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; }

/* ---- Key Services ---- */
.services-wrapper{
  padding: 80px 0; 
}
.services-wrapper .services-content{
  position: relative;
  z-index: 3;
}
.services-corner {
  position: absolute;
  opacity: 0.9;
  pointer-events: none;
}
.services-corner--tl { width:320px; top: 16px;    left: -50px; }
.services-corner--tr { width:250px; top: 16px;    right: -50px; }
.services-corner--bl { width:50px; bottom: 16px; left: -50px; }
.services-corner--br { width:200px; bottom: 16px; right: -100px; }

.service-circle-wrap { text-align: center; }
.service-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
}
.service-circle img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-circle-wrap h6 { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.service-circle-wrap p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.65; }

/* ---- About Page ---- */
.about-main-section { padding: 100px 0; }
.video-placeholder {
  background: var(--brown-dark);
  border-radius: 8px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.video-placeholder img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.play-btn {
  position: absolute;
  width: 64px; height: 64px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn i { font-size: 1.8rem; color: var(--orange); margin-left: 4px; }

.vision-section { padding: 100px 0; background: #f2f2f2; }
.facility-img {
  width: 100%; height: 320px;
  object-fit: cover;
}

.mission-section {
  background: var(--brown-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.mission-section::before { content: none; }
.mission-section h2 { color: var(--orange); }
.mission-section p { color: rgba(255,255,255,.8); }

.advantage-section { 
  background: url('images/about-background.jpg') center/cover;
  padding: 80px 0; 
}
.advantage-card { text-align: center; padding: 28px 20px; }
.advantage-icon {
  
}
.advantage-icon i { font-size: 2.2rem; color: var(--orange); }
.advantage-icon img { width: 100px; object-fit: contain; }
.advantage-card h4 { }
.advantage-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

/* ---- Catalogue Page ---- */
.build-section { padding: 100px 0; text-align: center; }
.build-section .description { 
  color: var(--text-muted); 
  font-weight: 100;
}

/* Steps */
.steps-section {
  background: #f2f2f2;
  padding: 100px 0;
}
.step-item { text-align: center; position: relative; }
.step-icon {
  margin: 0 auto 14px;
}
.step-icon i { font-size: 1.8rem; color: var(--orange); }
.step-icon img { width: 100px; object-fit: contain; }
.step-connector {
  position: absolute;
  top: 40px; left: 50%;
  width: 100%; height: 2px;
  background: var(--orange);
  opacity: .35;
}
.step-item:last-child .step-connector { display: none; }
.step-item h4 { 
  color: var(--orange); 
}
.step-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* Products */
.products-section { padding: 100px 0; }
.products-section.alt-bg { background: var(--bg-light); }

.category-title {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}
.category-title .accent { color: var(--orange); }
.category-title .dash { color: var(--text-dark); }

.product-card {
  padding: 10px;
}
.product-card-img {
  border-radius: 8px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  margin: 0 auto;
  margin-bottom: 14px;
}
.product-card-img img { width: 100%; height: 100%; object-fit: contain; }
.product-card h6 { font-size: 1rem; margin-bottom: 14px; }
.product-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 8px; }
.product-card .inquiry-link {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.product-card .inquiry-link:hover { text-decoration: underline; }

.custom-mixes-section {
  background: url('images/catalogue-background-custom-mixes.jpg') center/cover;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.custom-mixes-section .inner { position: relative; }
.custom-mixes-section h2 { 
  color: var(--white); 
  font-size: 2.5rem; 
  font-weight: 500;
}
.custom-mixes-section h2 .accent { color: var(--orange); }
.custom-mixes-section h3 { 
  color: var(--white); 
  font-weight: 500;
  font-size: 1.6rem;
}

/* ---- Footer ---- */
footer {
  background: #c07015;
  padding: 60px 0 0;
  color: #fff;
}
footer .footer-brand {
  display: block;
  margin-bottom: 14px;
}
.footer-logo {
  height: 44px;
  width: auto;
}
footer .footer-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 18px; color: rgba(255,255,255,.85); }

.footer-cert-img {
  max-width: 100%;
  height: auto;
  margin-top: 4px;
}

.cert-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.cert-badge {
  background: rgba(0,0,0,.15);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.25);
  letter-spacing: .05em;
}

footer h6 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: .04em;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 8px; font-size: 0.875rem; }
footer ul li a {
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
footer ul li a:hover { color: #fff; }
footer ul li a:hover::before { color: #fff; }
footer ul li a::before { content: '> '; color: rgba(255,255,255,.6); font-weight: 700; }

.footer-contact p { font-size: 0.875rem; color: rgba(255,255,255,.85); }

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #c07015;
  font-size: 1rem;
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.footer-social a:hover {
  background: #c07015;
  color: #fff;
}

.footer-divider {
  border-color: rgba(255,255,255,.2);
  margin: 32px 0 0;
}

/* Copyright bar */
.footer-copy-bar {
  background: #000;
  padding: 14px 0;
  margin-top: 0;
}
.footer-copy {
  font-size: 0.875rem;
  color: #fff;
  text-align: left;
  margin: 0;
}

/* ============================================
   Services Page
   ============================================ */
.service-wrapper{
}
.service-row {
  padding: 100px 0;
}
.service-row:last-child { border-bottom: none; }
.service-row.alt-bg { background: var(--bg-light); }

.service-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

.service-text h2 { font-size: 2rem; margin-bottom: 18px; }
.service-text h2 .accent { color: var(--orange); }
.service-text p { color: var(--text-muted); line-height: 1.85; margin-bottom: 14px; }

/* ============================================
   News Page
   ============================================ */
.news-section { padding: 70px 0; }

.news-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #e5e0d8;
  border-radius: 0 !important;
}
.news-accordion .accordion-button {
  background: transparent;
  padding: 22px 0 0;
  font-weight: 700;
  font-size: 1.6rem; /* kept — distinct heading level */
  color: var(--text-dark);
  box-shadow: none;
  display: block;
}
.news-accordion .accordion-button::after {
  display: none;
}
.news-accordion .accordion-button:not(.collapsed) {
  color: var(--text-dark);
  background: transparent;
}
.news-accordion .accordion-button:not(.collapsed)::after { filter: none; }
.news-accordion .accordion-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}
.news-accordion .accordion-body {
  padding: 0 0 24px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}
.news-accordion .accordion-button .btn-plus {
  color: #999999;
  position: relative;
  font-size: 1.6rem;
}
.news-accordion .accordion-button:not(.collapsed) .btn-plus {
  color: var(--orange);
  transform: translateY(-50%) rotate(45deg);
}

/* ---- Blog Cards ---- */
.blog-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #c07015 0%, #e8a020 100%);
  flex-shrink: 0;
}
.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
  display: block;
}
.blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.45;
}
.blog-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.blog-date {
  font-size: 0.75rem;
  color: #aaa;
}
.blog-read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
}
.blog-read-more:hover { text-decoration: underline; }

/* ---- Blog Single ---- */
.blog-single-section { padding: 70px 0 90px; }
.blog-back-link {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 24px;
}
.blog-back-link:hover { text-decoration: underline; }
.blog-single-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.blog-single-date {
  font-size: 0.875rem;
  color: #aaa;
}
.blog-single-img {
  width: 100%;
  height: 380px;
  border-radius: 8px;
  background: linear-gradient(135deg, #c07015 0%, #e8a020 100%);
  margin-bottom: 36px;
}
.blog-single-content {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
}
.blog-single-content p { margin-bottom: 20px; }
.blog-single-content ul { padding-left: 20px; margin-bottom: 20px; }
.blog-single-content li { margin-bottom: 8px; }
.blog-single-content strong { color: var(--text-dark); }
.blog-divider { margin: 48px 0; border-color: #e5e0d8; }
.blog-related-title { font-size: 1.25rem; margin-bottom: 24px; }

.facebook-section { padding: 100px 0 100px; }
.facebook-placeholder {
  background: #f0ece5;
  border-radius: 8px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: #8a7a6a;
}
.facebook-placeholder i { font-size: 3rem; color: #1877f2; }
.facebook-placeholder p { margin: 0; font-size: 1rem; }

/* ============================================
   Halal & Certificate Page
   ============================================ */
.quality-section { padding: 100px 0; }

.quality-card { text-align: center; padding: 32px 20px; }
.quality-icon {
  margin: 0 auto 16px;
}
.quality-icon i { font-size: 1.9rem; color: var(--orange); }
.quality-icon img { width: 100px; object-fit: contain; }
.quality-card p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.75; }

.credentials-section { background: #f2f2f2; padding: 100px 0; }
.credentials-img { max-width: 100%; height: auto; }

.cert-gallery-section { padding: 100px 0; }
.cert-gallery-img {
  border-radius: 8px;
  border: 1px solid #e0d8cc;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  aspect-ratio: 3/4;
  background: #f9f5ef;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-gallery-img img { width: 100%; height: 100%; object-fit: cover; }

.cert-gallery-item { cursor: pointer; position: relative; overflow: hidden; }
.cert-gallery-item::after {
  content: '\F52A';
  font-family: 'bootstrap-icons';
  position: absolute; inset: 0;
  background: rgba(44,17,0,.55);
  color: #fff;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .25s;
  border-radius: 8px;
}
.cert-gallery-item:hover::after { opacity: 1; }

.lightbox-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,.85);
  align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  background: none; border: none;
  color: #fff; font-size: 2rem; font-weight: 700;
  line-height: 1; cursor: pointer;
}

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

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-info-icon {
  
}
.contact-info-icon i { font-size: 1.1rem; color: var(--orange); }
.contact-info-icon img { width: 40px; object-fit: contain; }
.contact-info-item .label {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-dark);
  margin-bottom: 0;
  display: block;
}
.contact-info-item .value { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

.contact-social-row { display: flex; gap: 12px; margin-top: 28px; }
.contact-social-row a {
  width: 38px; height: 38px;
  background: #c07015;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: opacity .2s;
}
.contact-social-row a:hover { opacity: 0.85; }

.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: 0 6px 32px rgba(0,0,0,.08);
}
.contact-form-wrap .form-control {
  border: 1.5px solid #ddd8d0;
  border-radius: 4px;
  font-size: .875rem;
  padding: 11px 14px;
  color: var(--text-dark);
  transition: border-color .2s;
}
.contact-form-wrap .form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(212,132,10,.12);
  outline: none;
}
.contact-form-wrap .form-control::placeholder { color: #bbb; }
.contact-form-wrap textarea.form-control { resize: vertical; min-height: 130px; }

.google-map-section iframe{
  display: block;
  width: 100%;
  height: 400px;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .services-corner--tl { width:200px; left: -30px; }
  .services-corner--tr { width:100px; right: 0; }
  .services-corner--bl { left: 0; }
  .services-corner--br { right: 0; }
  .hero-slide { height: 75vh; }
  .slide-content h1 { font-size: 2rem; }
  .service-circle { width: 130px; height: 130px; }
  .vision-section, 
  .mission-section{
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .hero-slide { height: 65vh; text-align: center; }
  .slide-content .hero-desc { margin-left: auto; margin-right: auto; }
  .about-section .row, .vision-section .row { gap: 28px; }
  .page-hero h1 { font-size: 2rem; }
}
