/* 
 * PT. Unification Testing Indonesia - Company Profile Stylesheet
 * Custom CSS with Premium Industrial Corporate Aesthetics
 * Author: Antigravity AI
 */

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

:root {
  /* Color Palette */
  --primary-blue: #2563EB;
  --primary-hover: #1D4ED8;
  --dark-navy: #0F172A;
  --dark-navy-light: #1E293B;
  --sky-blue: #0EA5E9;
  --sky-blue-hover: #0284C7;
  --white: #FFFFFF;
  --light-gray: #F8FAFC;
  --border-color: #E2E8F0;
  --text-dark: #1E293B;
  --text-muted: #64748B;

  /* Fonts */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Box Shadow */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -2px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
  --shadow-premium: 0 20px 25px -5px rgba(37, 99, 235, 0.1), 0 8px 10px -6px rgba(37, 99, 235, 0.05);

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Global & Base Styles
   ========================================================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  /* Offset for sticky header */
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark-navy);
}

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

a:hover {
  color: var(--primary-hover);
}

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

.section-padding {
  padding: 100px 0;
}

.bg-light-gray {
  background-color: var(--light-gray);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ==========================================================================
   Typography & UI Components
   ========================================================================== */
.section-tagline {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sky-blue);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

/* Custom Buttons */
.btn-custom-primary {
  background-color: var(--primary-blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  border: 2px solid var(--primary-blue);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.btn-custom-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-custom-outline {
  background-color: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  border: 2px solid var(--white);
  transition: var(--transition-fast);
}

.btn-custom-outline:hover {
  background-color: var(--white);
  color: var(--dark-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-custom-dark {
  background-color: var(--dark-navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  border: 2px solid var(--dark-navy);
  transition: var(--transition-fast);
}

.btn-custom-dark:hover {
  background-color: var(--dark-navy-light);
  border-color: var(--dark-navy-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-custom-sky {
  background-color: var(--sky-blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  border: 2px solid var(--sky-blue);
  transition: var(--transition-fast);
}

.btn-custom-sky:hover {
  background-color: var(--sky-blue-hover);
  border-color: var(--sky-blue-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-bar {
  background-color: var(--dark-navy);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
  color: rgba(255, 255, 255, 0.8);
}

.top-bar a:hover {
  color: var(--sky-blue);
}

.navbar {
  padding: 15px 0;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.navbar.navbar-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 10px 0;
  box-shadow: var(--shadow-md);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.navbar-brand img {
  max-height: 48px;
}

.navbar-brand span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--dark-navy);
  letter-spacing: -0.5px;
}

.navbar-brand span .text-accent {
  color: var(--primary-blue);
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark) !important;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--primary-blue);
  transform: scaleX(0);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue) !important;
}

/* Mobile Nav Menu styles */
.navbar-toggler {
  border: none;
  padding: 5px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 24px;
  height: 24px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--dark-navy);
  transition: var(--transition-fast);
}

.navbar-toggler-icon::before {
  top: 4px;
}

.navbar-toggler-icon span {
  top: 11px;
}

.navbar-toggler-icon::after {
  top: 18px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-slider {
  position: relative;
  height: 85vh;
  min-height: 550px;
  background-color: var(--dark-navy);
}

/* .carousel-item {
  height: 85vh;
  min-height: 550px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
} */

.hero-slider .carousel-item {
  height: 85vh;
  min-height: 550px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 30%, rgba(15, 23, 42, 0.4) 100%);
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {

  .hero-slider,
  .carousel-item {
    height: 75vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  z-index: 10;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(15, 23, 42, 0.6);
  padding: 24px;
  border-radius: 50%;
  background-size: 50%;
  transition: var(--transition-fast);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--primary-blue);
}

/* ==========================================================================
   Statistics Section
   ========================================================================== */
.stats-section {
  position: relative;
  z-index: 5;
  margin-top: -60px;
  padding-bottom: 40px;
}

.stats-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 35px 20px;
  box-shadow: var(--shadow-lg);
  border-bottom: 4px solid var(--primary-blue);
  text-align: center;
  transition: var(--transition-normal);
  height: 100%;
}

.stats-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-bottom-color: var(--sky-blue);
}

.stats-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.stats-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 5px;
  font-family: var(--font-heading);
}

.stats-label {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-image-wrapper {
  position: relative;
  padding-right: 20px;
  padding-bottom: 20px;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80%;
  height: 80%;
  border: 8px solid var(--sky-blue);
  z-index: -1;
  border-radius: 8px;
}

.about-img {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-experience-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  display: flex;
  align-items: center;
}

.about-experience-badge h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0;
  margin-right: 15px;
}

.about-experience-badge p {
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.2;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.about-list li {
  margin-bottom: 12px;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
}

.about-list li i {
  color: var(--sky-blue);
  margin-right: 10px;
  margin-top: 5px;
}

.vision-mission-tab {
  margin-top: 35px;
}

.vision-mission-tab .nav-pills {
  background-color: var(--light-gray);
  padding: 5px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  display: inline-flex;
}

.vision-mission-tab .nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  padding: 10px 25px !important;
  color: var(--text-dark) !important;
  transition: var(--transition-fast);
}

.vision-mission-tab .nav-link::after {
  display: none;
}

.vision-mission-tab .nav-link.active {
  background-color: var(--primary-blue) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow-sm);
}

.tab-pane-content {
  padding: 25px 0;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.service-nav {
  margin-bottom: 40px;
  justify-content: center;
  border: none;
}

.service-nav .nav-item {
  margin: 5px;
}

.service-nav .nav-link {
  background-color: var(--light-gray);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 10px 25px !important;
  color: var(--text-dark) !important;
  font-size: 0.95rem;
  font-weight: 600;
}

.service-nav .nav-link::after {
  display: none;
}

.service-nav .nav-link.active {
  background-color: var(--primary-blue) !important;
  border-color: var(--primary-blue);
  color: var(--white) !important;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 35px 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-blue);
  transition: var(--transition-fast);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-color: rgba(37, 99, 235, 0.03);
  border-top-left-radius: 100px;
  z-index: -1;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(37, 99, 235, 0.15);
}

.service-card:hover::before {
  height: 6px;
  background-color: var(--sky-blue);
}

.service-card:hover::after {
  width: 120px;
  height: 120px;
  background-color: rgba(37, 99, 235, 0.05);
}

.service-icon-wrapper {
  width: 65px;
  height: 65px;
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--primary-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-wrapper {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: scale(1.05);
}

.service-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-navy);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin-bottom: 20px;
}

.service-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.service-list li {
  font-size: 0.875rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.service-list li i {
  color: var(--sky-blue);
  margin-right: 8px;
  font-size: 0.8rem;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  padding: 35px 25px;
  border-radius: 8px;
  transition: var(--transition-normal);
  height: 100%;
}

.why-choose-card:hover {
  background-color: var(--dark-navy);
  border-color: var(--dark-navy);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.why-choose-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(14, 165, 233, 0.1);
  color: var(--sky-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition-normal);
}

.why-choose-card:hover .why-choose-icon {
  background-color: var(--sky-blue);
  color: var(--white);
}

.why-choose-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  transition: var(--transition-normal);
}

.why-choose-card:hover h4 {
  color: var(--white);
}

.why-choose-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
  transition: var(--transition-normal);
}

.why-choose-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Industries We Serve
   ========================================================================== */
.industry-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
}

.industry-card:hover {
  border-color: var(--sky-blue);
  box-shadow: var(--shadow-premium);
  transform: translateY(-5px);
}

.industry-icon {
  font-size: 2.2rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
  transition: var(--transition-fast);
}

.industry-card:hover .industry-icon {
  color: var(--sky-blue);
  transform: scale(1.1);
}

.industry-card h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--dark-navy);
}

/* ==========================================================================
   Workflow Section
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--border-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
}

.timeline-container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  right: -12px;
  background-color: var(--white);
  border: 4px solid var(--primary-blue);
  top: 30px;
  border-radius: 50%;
  z-index: 1;
  transition: var(--transition-fast);
}

@media (max-width: 768px) {
  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-container::after {
    left: 19px;
    right: auto;
    top: 30px;
  }
}

.timeline-left {
  left: 0;
}

.timeline-right {
  left: 50%;
}

@media (max-width: 768px) {
  .timeline-right {
    left: 0%;
  }
}

.timeline-left::after {
  /* No changes, sits right on the center line */
}

.timeline-right::after {
  left: -12px;
}

@media (max-width: 768px) {
  .timeline-right::after {
    left: 19px;
  }
}

.timeline-content {
  padding: 30px;
  background-color: var(--white);
  position: relative;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.timeline-container:hover::after {
  background-color: var(--sky-blue);
  border-color: var(--sky-blue);
  transform: scale(1.2);
}

.timeline-number {
  position: absolute;
  top: -15px;
  background-color: var(--primary-blue);
  color: var(--white);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.timeline-left .timeline-number {
  right: 30px;
}

.timeline-right .timeline-number {
  left: 30px;
}

@media (max-width: 768px) {

  .timeline-left .timeline-number,
  .timeline-right .timeline-number {
    left: 30px;
    right: auto;
  }
}

.timeline-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  margin-top: 10px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ==========================================================================
   Project Gallery
   ========================================================================== */
.gallery-filter {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.gallery-filter-btn {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 30px;
  transition: var(--transition-fast);
  cursor: pointer;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.gallery-item {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
  cursor: pointer;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  transition: var(--transition-normal);
  z-index: 2;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 15px;
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay-icon {
  transform: translateY(0);
}

.gallery-overlay h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 5px;
  transform: translateY(20px);
  transition: var(--transition-normal);
  transition-delay: 0.05s;
}

.gallery-item:hover .gallery-overlay h5 {
  transform: translateY(0);
}

.gallery-overlay p {
  color: var(--sky-blue);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  transform: translateY(20px);
  transition: var(--transition-normal);
  transition-delay: 0.1s;
}

.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* Lightbox styles */
.custom-lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.95);
  justify-content: center;
  align-items: center;
}

.custom-lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 85%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: var(--white);
  margin-top: 15px;
  text-align: center;
}

.lightbox-caption h5 {
  color: var(--white);
  margin-bottom: 5px;
  font-size: 1.25rem;
}

.lightbox-caption p {
  color: var(--sky-blue);
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--sky-blue);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-fast);
  padding: 10px;
  z-index: 2010;
}

.lightbox-nav:hover {
  color: var(--sky-blue);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: -30px;
    font-size: 1.8rem;
  }

  .lightbox-next {
    right: -30px;
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   Client Testimonials
   ========================================================================== */
.testimonial-carousel .carousel-item {
  height: auto;
  min-height: auto;
}

.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  position: relative;

  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote-icon {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: rgba(37, 99, 235, 0.08);
}

.testimonial-rating {
  color: #FBBF24;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 25px;
}

.testimonial-client {
  display: flex;
  align-items: center;
}

.testimonial-logo-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--light-gray);
  color: var(--primary-blue);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 15px;
  font-weight: 700;
}

.testimonial-client-info h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--dark-navy);
}

.testimonial-client-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.testimonial-carousel .carousel-indicators {
  bottom: -50px;
}

.testimonial-carousel .carousel-indicators [data-bs-target] {
  background-color: var(--primary-blue);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.accordion-item {
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.accordion-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.2);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark-navy);
  padding: 20px 25px;
  background-color: var(--white);
  transition: var(--transition-fast);
}

.accordion-button:not(.collapsed) {
  background-color: rgba(37, 99, 235, 0.03);
  color: var(--primary-blue);
  box-shadow: none;
}

.accordion-button::after {
  background-size: 1.2rem;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-body {
  padding: 20px 25px 25px 25px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-info-wrapper {
  height: 100%;
}

.contact-info-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  transition: var(--transition-normal);
}

.contact-info-card:hover {
  transform: translateX(5px);
  border-color: var(--sky-blue);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--primary-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-right: 20px;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.contact-info-card:hover .contact-info-icon {
  background-color: var(--primary-blue);
  color: var(--white);
}

.contact-info-details h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-info-details p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.925rem;
}

.contact-form-wrapper {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-tabs .nav-pills {
  background-color: var(--light-gray);
  padding: 5px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.contact-tabs .nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  padding: 10px 20px !important;
  color: var(--text-dark) !important;
  transition: var(--transition-fast);
  text-align: center;
  width: 100%;
}

.contact-tabs .nav-link::after {
  display: none;
}

.contact-tabs .nav-link.active {
  background-color: var(--primary-blue) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow-sm);
}

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

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-navy);
  margin-bottom: 8px;
}

.form-control,
.form-select {
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  outline: none;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin-top: 25px;
  height: 350px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
  background-color: var(--dark-navy);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.925rem;
}

.footer-top {
  padding: 80px 0 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo img {
  max-height: 48px;
  margin-bottom: 20px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -0.5px;
}

.footer-logo-text .text-accent {
  color: var(--sky-blue);
}

.footer-widget h4 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--sky-blue);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
}

.footer-links a i {
  font-size: 0.75rem;
  margin-right: 8px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--sky-blue);
  transform: translateX(3px);
}

.footer-links a:hover i {
  color: var(--sky-blue);
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--sky-blue);
  margin-right: 12px;
  margin-top: 5px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-social-btn:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 25px 0;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--sky-blue);
}

@media (max-width: 768px) {
  .footer-bottom-links {
    justify-content: center;
    margin-top: 10px;
  }

  .footer-bottom {
    text-align: center;
  }
}

/* ==========================================================================
   Utility & Floating Action Components
   ========================================================================== */
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  background-color: #20BA5A;
  color: var(--white);
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  border: none;
  cursor: pointer;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--dark-navy);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .back-to-top {
    bottom: 85px;
    right: 22px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ==========================================================================
   Subpages Style Configuration
   ========================================================================== */
.subpage-header {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 0;
  margin-top: 0;
  z-index: 1;
}

.subpage-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.75));
  z-index: -1;
}

.subpage-header h1 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}