:root {
  --consulink-gold: #c88b00;
  --consulink-black: #000000;
  --consulink-white: #ffffff;
  --consulink-gray: #f8f9fa;
  --consulink-dark: #111111;
  --consulink-text: #222222;
  --consulink-muted: #666666;
  --consulink-soft: #fff8e6;
  --consulink-border: rgba(0, 0, 0, 0.08);
  --consulink-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(to bottom, #fefefe, #f8f8f8);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--consulink-text);
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

.btn-primary {
  background-color: var(--consulink-gold);
  border-color: var(--consulink-gold);
  color: var(--consulink-white);
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #a67100;
  border-color: #a67100;
  color: var(--consulink-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--consulink-black);
  font-weight: 700;
}

h2 {
  margin-bottom: 1.5rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading p {
  color: var(--consulink-muted);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
}

.site-navbar {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  padding: 0.85rem 0;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.site-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.brand-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--consulink-black);
  letter-spacing: 0.2px;
}

.site-navbar .nav-link {
  color: #111;
  font-weight: 600;
  margin-left: 0.35rem;
  margin-right: 0.35rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--consulink-gold);
  background: rgba(200, 139, 0, 0.08);
}

.site-navbar .nav-cta {
  background: var(--consulink-gold);
  color: #fff !important;
}

.site-navbar .nav-cta:hover,
.site-navbar .nav-cta.active {
  background: #a67100;
  color: #fff !important;
}

.custom-toggler {
  border: none;
  box-shadow: none !important;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-carousel .carousel-inner {
  position: relative;
}

.hero-carousel .carousel-item {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 70vh;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.28));
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-box {
  max-width: 560px;
  color: #fff;
}

.hero-box h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.hero-box p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-box .btn {
  padding: 10px 20px;
  border-radius: 8px;
}

.hero-carousel .carousel-indicators {
  bottom: 22px;
  z-index: 5;
}

.hero-carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  margin: 0 5px;
}

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

.about-us {
  background: linear-gradient(to right, #fff8e6 0%, #ffffff 100%);
  border-left: 6px solid var(--consulink-gold);
  padding: 80px 0;
}

.about-us p {
  font-size: 1.125rem;
  line-height: 1.9;
  color: #333;
}

.about-us .about-copy {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us img {
  border-radius: 18px;
  box-shadow: var(--consulink-shadow);
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.about-us img:hover {
  transform: scale(1.02);
}

.offerings {
  background: linear-gradient(to bottom, #fefefe, #f8f8f8);
  padding: 80px 0;
}

.offerings .card {
  border: none;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  padding: 0.5rem;
}

.offerings .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.1);
  cursor: default;
}

.offerings .card-body {
  padding: 24px 20px;
}

.offerings .card-title {
  color: var(--consulink-black);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.offerings .card-text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.8;
}

.offerings i {
  color: var(--consulink-gold);
  margin-top: 20px;
}

.home-contact {
  padding: 80px 0;
  background: #fff;
}

.home-contact .contact-card,
.home-contact .form-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--consulink-shadow);
  height: 100%;
}

.contact-info {
  background-color: #fff8e6;
  border-left: 4px solid var(--consulink-gold);
  padding: 30px 25px;
  border-radius: 14px;
  text-align: left;
  width: 100%;
  height: 100%;
}

.contact-info h5 {
  color: var(--consulink-black);
}

.contact-info p,
.contact-info li {
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-info ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.contact-info a {
  color: #0056b3;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact {
  background-color: #fff;
  padding: 80px 0;
}

.contact h2 {
  color: var(--consulink-black);
}

.contact .form-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--consulink-shadow);
}

.contact .form-label {
  font-weight: 500;
  color: #444;
}

.contact input,
.contact textarea {
  border-radius: 10px;
  border: 1px solid #ccc;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  padding: 0.85rem 1rem;
}

.contact input:focus,
.contact textarea:focus {
  border-color: var(--consulink-gold);
  box-shadow: 0 0 0 0.2rem rgba(200, 139, 0, 0.15);
}

.contact .btn-primary {
  border-radius: 10px;
  font-weight: 600;
  padding: 12px;
}

#formMsg {
  margin-top: 1rem;
  font-weight: 600;
}

.services {
  padding: 80px 0;
}

.services .accordion {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--consulink-shadow);
}

.accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.accordion-button {
  font-weight: 700;
  padding: 1.25rem 1.2rem;
}

.accordion-button:not(.collapsed) {
  background-color: #ffefcc;
  color: var(--consulink-black);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.1rem rgba(200, 139, 0, 0.25);
}

.accordion-body p,
.accordion-body li {
  line-height: 1.8;
  color: #333;
}

.team {
  padding: 80px 0;
}

.team-section {
  background: linear-gradient(to bottom, #ffffff, #f9f9f9);
}

.team-card {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: #fff;
  height: 100%;
}

.team-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.team-card .card-img-top {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.team-card .card-body {
  background: #fff8e6;
  padding: 20px 15px;
  color: #333;
}

.team-card .role {
  font-weight: 600;
  color: var(--consulink-gold);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.team-card .role-description {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.vision-mission {
  padding: 80px 0;
  background: #fff;
}

.vision-mission .lead {
  color: #444;
  line-height: 1.9;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.core-values {
  padding: 80px 0;
  background: #f8f9fa;
}

.about-card {
  position: relative;
  height: 100%;
  min-height: 200px;
  background-color: #fff;
  border-radius: 18px;
  box-shadow: var(--consulink-shadow);
  padding: 2rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-card h5 {
  color: var(--consulink-gold);
  margin-bottom: 0.8rem;
}

.about-card p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 0;
}

.about-page-hero {
  padding: 90px 0;
  background: linear-gradient(135deg, #fff8e6 0%, #ffffff 55%, #f8f9fa 100%);
}

.about-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(200, 139, 0, 0.12);
  color: var(--consulink-gold);
  font-weight: 700;
  font-size: 0.9rem;
}

.about-page-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 0;
}

.about-page-lead {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #444;
  max-width: 700px;
}

.about-page-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--consulink-shadow);
  background: #fff;
}

.about-page-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.about-story {
  padding: 80px 0;
  background: #fff;
}

.about-story-card {
  background: #fff;
  border-radius: 22px;
  padding: 2rem;
  box-shadow: var(--consulink-shadow);
  height: 100%;
}

.about-story-card h2 {
  margin-bottom: 1rem;
}

.about-story-card p {
  color: #444;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.about-vision-mission {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.about-info-card {
  background: #fff;
  border-radius: 22px;
  padding: 2rem;
  box-shadow: var(--consulink-shadow);
  height: 100%;
}

.about-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(200, 139, 0, 0.12);
  color: var(--consulink-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-info-card p {
  color: #444;
  line-height: 1.9;
  margin-bottom: 0;
}

.about-cta {
  padding: 80px 0;
  background: #fff;
}

.about-cta-box {
  background: linear-gradient(135deg, #111111 0%, #1f1f1f 100%);
  border-radius: 24px;
  padding: 3rem 1.5rem;
  box-shadow: var(--consulink-shadow);
}

.about-cta-box h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.about-cta-box p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
  margin: 0 auto 1.5rem;
  line-height: 1.9;
}

.policy-container {
  max-width: 950px;
  margin: 3rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 22px;
  box-shadow: var(--consulink-shadow);
}

.header-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.header-section img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.header-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--consulink-black);
}

.policy-container p,
.policy-container li {
  line-height: 1.9;
  color: #333;
}

.policy-container ul {
  padding-left: 1.2rem;
}

.thank-you-message {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.social-media-links a {
  margin-right: 15px;
  font-size: 16px;
}

.site-footer {
  background: #0f0f0f;
  color: #f4f4f4;
  padding: 4rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.footer-brand {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.footer-title {
  color: var(--consulink-gold);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  max-width: 360px;
}

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

.footer-links li,
.footer-contact li {
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--consulink-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding-top: 1.2rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 991px) {
  .site-logo {
    width: 52px;
    height: 52px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .site-navbar .navbar-collapse {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    margin-top: 1rem;
  }

  .site-navbar .nav-link {
    margin: 0.25rem 0;
  }

  .hero-image {
    height: 55vh;
    min-height: 420px;
  }

  .hero-box {
    max-width: 480px;
  }

  .hero-box h2 {
    font-size: 1.9rem;
  }

  .hero-box p {
    font-size: 0.95rem;
  }

  .about-page-title {
    font-size: 2.3rem;
  }

  .about-page-image {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .hero-image {
    height: 50vh;
    min-height: 360px;
  }

  .hero-content {
    align-items: center;
  }

  .hero-box {
    max-width: 100%;
    text-align: left;
  }

  .hero-box h2 {
    font-size: 1.55rem;
  }

  .hero-box p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    display: none;
  }

  .about-page-title {
    font-size: 1.9rem;
  }

  .about-page-lead {
    font-size: 1rem;
  }

  .team .row>div[class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .team-card {
    height: 100%;
    margin-bottom: 1rem;
    box-shadow: none;
    transform: none !important;
  }

  .team-card .card-img-top {
    height: 120px;
    object-fit: contain;
    background: #fff;
  }

  .team-card .card-body {
    position: static;
    background: #fff8e6;
    color: #333;
    padding: 0.85rem;
    opacity: 1 !important;
    text-align: center;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .team-card .role {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
  }

  .team-card .role-description {
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
  }

  .team-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .header-title {
    font-size: 1.4rem;
  }

  .policy-container {
    margin: 1.5rem 1rem;
    padding: 1.5rem;
  }

  .about-story-card,
  .about-info-card,
  .about-cta-box,
  .home-contact .contact-card,
  .home-contact .form-card,
  .contact .form-wrapper,
  .about-card {
    padding: 1.4rem;
  }
}