/* =========================
   COLOR SYSTEM
========================= */
:root {
  --primary: #1E293B;
  --secondary: #0F172A;
  --accent: #C9A34E;
  --highlight: #14B8A6;
  --light: #F8FAFC;
  --text-light: #E2E8F0;
}

/* ================= GLOBAL ================= */
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  color: var(--primary);
}

h1 { font-family: 'Roboto', sans-serif; }
h2 { font-family: 'Roboto', sans-serif; }
h3 { font-family: 'Roboto', sans-serif; }

p {
  font-size: 18px;
}

/* ================= TOP BAR ================= */
.top-bar {
  background: var(--secondary);
  padding: 8px 0;
  font-size: 14px;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-left {
  display: flex;
  gap: 10px;
}

.top-right {
  display: flex;
  gap: 20px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  text-decoration: none;
  transition: 0.3s;
}

.contact-link:hover {
  color: var(--highlight);
}

/* Buttons */
.btn-accent {
  background-color: var(--accent);
  color: #fff;
  border: none;
  transition: 0.3s;
}

/* FIXED HOVER */
.btn-accent:hover {
  background-color: #a8822f;
  color: #fff;
}

.btn-outline-light-custom {
  border: 1px solid var(--text-light);
  color: var(--text-light);
}

.btn-outline-light-custom:hover {
  background-color: var(--highlight);
  color: #fff;
}

/* ================= NAVBAR ================= */
.navbar-custom {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 5px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  margin: 0;
}

.navbar-brand img {
  height: 70px;
  max-width: 100%;
}

.navbar-toggler {
  margin-left: auto;
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-collapse {
  width: 100%;
}

.navbar-nav .nav-link {
  color: var(--primary);
  font-weight: 600;
  margin-left: 20px;
  position: relative;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--highlight);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--highlight);
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* ================= MOBILE NAV ================= */
@media (max-width: 991px) {
  .navbar-collapse {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-nav {
    margin-top: 5px;
    text-align: center;
  }

  .navbar-nav .nav-link {
    margin: 6px 0;
    padding: 6px 0;
  }
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 35px;
  }
}

/* ================= HERO SECTION ================= */
.hero-section {
  background: linear-gradient(135deg, #14B8A6, #0F766E);
  padding: 100px 0;
  color: #fff;
}

/* Subtitle */
.hero-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Title */
.hero-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* Description */
.hero-description {
  margin-bottom: 25px;
}

/* Hero Button */
.hero-btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  transition: 0.3s;
}

/* FIXED HOVER (VISIBLE) */
.hero-btn:hover {
  background: #0F172A;
  color: #fff;
}

/* Hero Image */
.hero-image {
  max-width: 100%;
}

/* ================= HERO STATS ================= */
.hero-stats {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

/* Equal width */
.stat-box {
  flex: 1;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.stat-box h3 {
  font-size: 30px;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 14px;
  margin: 0;
  color: var(--text-light);
}

/* ================= OUTSOURCE SECTION ================= */
.outsource-section {
  padding: 100px 0;
  background: #F8FAFC;
}

/* Image wrapper */
.image-wrapper {
  position: relative;
}

.main-img {
  width: 100%;
  border-radius: 20px;
}

/* Floating stat box */
.floating-box {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: var(--accent);
  color: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.floating-box h3 {
  margin: 0;
  font-size: 28px;
}

.floating-box p {
  margin: 0;
  font-size: 14px;
}

/* Text */
.section-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--highlight);
  margin-bottom: 10px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-description {
  margin-bottom: 15px;
  color: #475569;
}

/* Features */
.features {
  margin-top: 25px;
}

.feature-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-item i {
  font-size: 28px;
  color: var(--highlight);
}

.feature-item h5 {
  margin: 0;
  font-size: 18px;
}

.feature-item p {
  margin: 0;
  font-size: 14px;
  color: #64748B;
}

/* ================= WORK PROCESS ================= */
.work-process {
  padding: 100px 0;
  background: #F1F5F9;
}

/* Subtitle */
.process-subtitle {
  color: var(--accent); /* gold */
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Title */
.process-title {
  font-size: 42px;
  font-weight: 700;
}

/* Card */
.process-card {
  text-align: center;
}

/* Icon Box */
.process-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #C9A34E, #a8822f); /* gold gradient */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Icon */
.process-icon i {
  font-size: 40px;
  color: #fff;
}

/* Step Number Circle */
.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  color: var(--accent);
  font-weight: 600;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Text */
.process-card h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 15px;
  color: #64748B;
}

/* ================= CTA SECTION ================= */
.cta-section {
  background: 
    linear-gradient(rgba(20, 184, 166, 0.85), rgba(15, 118, 110, 0.85)),
    url('../images/bg2.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #fff;
}

/* Title */
.cta-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Text */
.cta-text {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 18px;
  color: #E2E8F0;
}

/* Button */
.cta-btn {
  background: #fff;
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

/* Hover */
.cta-btn:hover {
  background: var(--accent);
  color: #fff;
}

/* ================= SERVICES SECTION ================= */
.services-section {
  padding: 100px 0;
  background: #ffffff;
}

/* Header */
.services-subtitle {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.services-title {
  font-size: 42px;
  font-weight: 700;
}

.services-description {
  max-width: 750px;
  margin: 15px auto 0;
  color: #64748B;
  font-size: 16px;
}

/* Service Item */
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  height: 100%;
}

/* Icon Box */
.icon-box {
  min-width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid rgba(201, 163, 78, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon */
.icon-box i {
  font-size: 26px;
  color: var(--accent);
}

/* Content */
.service-content h4 {
  font-size: 20px;
  margin-bottom: 6px;
}

.service-content p {
  font-size: 15px;
  color: #64748B;
  margin: 0;
}

/* ================= BENEFITS SECTION ================= */
.benefits-section {
  padding: 100px 0;
  background: #f1f1f1;
}

/* Subtitle */
.benefits-subtitle {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Title */
.benefits-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Description */
.benefits-desc {
  color: #64748B;
  margin-bottom: 25px;
}

/* List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* Icon */
.benefit-item i {
  color: var(--accent);
  font-size: 18px;
  margin-top: 3px;
}

/* Text */
.benefit-item span {
  font-size: 16px;
  color: #1E293B;
}

/* Image */
.benefits-img {
  max-width: 100%;
  border-radius: 15px;
}

/* ================= APPOINTMENT SECTION ================= */
.appointment-section {
  padding: 100px 0;
  background: #f8fafc;
}

/* LEFT CONTENT */
.appointment-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.appointment-desc {
  color: #64748B;
  margin-bottom: 20px;
}

.appointment-subtext {
  font-size: 14px;
  color: #94A3B8;
  margin-bottom: 10px;
}

.appointment-call {
  font-size: 18px;
  font-weight: 600;
}

.appointment-call span {
  color: var(--accent);
}

/* FORM BOX */
.appointment-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.appointment-form h4 {
  margin-bottom: 20px;
}

/* INPUTS + TEXTAREA */
.appointment-form input,
.appointment-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  outline: none;
  font-family: 'Open Sans', sans-serif;
}

/* TEXTAREA FIX */
.appointment-form textarea {
  resize: none;
}

/* BUTTON */
.appointment-form button {
  width: 100%;
  padding: 14px;
  border: none;
  background: var(--highlight);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
}

.appointment-form button:hover {
  background: var(--accent);
}

/* ================= FAQ SECTION ================= */
.faq-section {
  padding: 100px 0;
  background: #f1f1f1;
}

/* Title */
.faq-title {
  font-size: 42px;
  font-weight: 700;
}

.faq-subtitle {
  color: #64748B;
  margin-top: 10px;
}

/* CENTER + REDUCE WIDTH */
.faq-section .accordion {
  max-width: 800px;
  margin: 0 auto;
}

/* Accordion Item */
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

/* Default Button */
.accordion-button {
  font-weight: 600;
  font-size: 18px;
  padding: 18px;
  background: #ffffff;
  color: var(--primary);
  box-shadow: none;
  transition: 0.3s;
}

.accordion-button:not(.collapsed) {
  background: var(--accent);
  color: #1E293B; 
}

/* Hover */
.accordion-button:hover {
  background: rgba(201, 163, 78, 0.15);
}

.accordion-button::after {
  filter: brightness(0);
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

/* Remove focus outline */
.accordion-button:focus {
  box-shadow: none;
}

/* Body */
.accordion-body {
  background: #ffffff;
  color: #64748B;
  font-size: 15px;
  padding: 15px 18px;
}

/* ================= FOOTER ================= */
.footer {
  background: var(--secondary); /* BACK TO DARK */
  color: var(--text-light);
  padding-top: 70px;
}

/* Box */
.footer-box {
  margin-bottom: 30px;
}

/* Logo */
.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

/* Headings */
.footer-box h5 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

/* Paragraph */
.footer-box p {
  font-size: 15px;
  color: var(--text-light);
}

/* Links */
.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

/* LINKS */
.footer-box ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: 0.3s;
}

/* 🔥 FIXED HOVER (VISIBLE + PREMIUM) */
.footer-box ul li a:hover {
  color: var(--accent); /* GOLD */
}

/* CONTACT */
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

/* ICON STYLE */
.footer-contact i {
  color: var(--accent); /* GOLD ICON */
  font-size: 16px;
}

/* CONTACT LINKS */
.footer-contact a {
  color: var(--text-light);
  text-decoration: none;
  transition: 0.3s;
}

.footer-contact a:hover {
  color: var(--highlight); /* TEAL ON HOVER */
}

.appointment-call a {
  color: var(--accent);
  text-decoration: none;
  transition: 0.3s;
}

.appointment-call a:hover {
  color: var(--highlight); /* TEAL ON HOVER */
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .hero-section, .outsource-section, .work-process, .cta-section, .services-section, .benefits-section, .appointment-section, .faq-section {
    /* text-align: center; */
    padding: 40px 0; /* your custom fix */
  }

  .hero-stats {
    flex-direction: column;
  }

  .stat-box {
    width: 100%;
  }

  .hero-title {
    font-size: 32px;
  }
    .outsource-section {
    padding: 60px 0;
  }

  .floating-box {
    position: static;
    margin-top: 15px;
  }

  .section-title {
    font-size: 30px;
  }
    .process-title {
    font-size: 30px;
  }

  .process-icon {
    width: 100px;
    height: 100px;
  }

  .process-icon i {
    font-size: 30px;
  }
    .cta-section {
    padding: 60px 20px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-text {
    font-size: 16px;
  }

    .services-title {
    font-size: 30px;
  }

    .benefits-section {
    text-align: center;
  }

  .benefits-title {
    font-size: 30px;
  }

  .benefit-item {
    justify-content: center;
    text-align: left;
  }
    .appointment-section {
    text-align: center;
  }

  .appointment-title {
    font-size: 30px;
  }

  .appointment-form {
    margin-top: 30px;
  }
    .faq-title {
    font-size: 30px;
  }

  .faq-section .accordion {
    max-width: 100%;
  }
}