/* style.css - BuildMaster Constructions Professional Redesign */

:root {
  --primary-navy: #0f172a;
  --navy-dark: #020617;
  --accent-gold: #eab308;
  --accent-gold-light: #facc15;
  --gold-muted: #ca8a04;
  --neutral-gray: #f8fafc;
  --text-dark: #0f172a;
  --text-medium: #475569;
  --text-light: #64748b;
  --border-color: #e2e8f0;
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Outfit", sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background-color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Mobile Menu Backdrop */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1020;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

body.menu-open::after {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6, .font-outfit {
  font-family: var(--font-heading);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h3 {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 600;
}
h4 {
  font-size: 1.25rem;
  font-weight: 600;
}
h5 {
  font-size: 1.125rem;
  font-weight: 600;
}

.tracking-wider {
  letter-spacing: 0.1em;
}

.text-gold {
  color: var(--accent-gold);
}
.text-navy {
  color: var(--primary-navy);
}

/* Buttons */
.btn {
  padding: 12px 32px;
  border-radius: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #fff;
  border-color: var(--accent-gold);
}

.btn-primary:hover {
  background-color: var(--accent-gold-light);
  border-color: var(--accent-gold-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.3);
}

.btn-outline-primary {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--accent-gold);
  color: #fff;
}

.btn-navy {
  background-color: var(--primary-navy);
  color: #fff;
  border-color: var(--primary-navy);
}

.btn-navy:hover {
  background-color: var(--navy-dark);
  border-color: var(--navy-dark);
  color: #fff;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background-color: var(--primary-navy);
  color: #fff;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition);
  border: none;
}

.btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--accent-gold);
  z-index: -1;
  transition: var(--transition);
}

.btn-main:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.btn-main:hover::before {
  width: 100%;
}

.btn-main-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  background-color: transparent;
  color: var(--primary-navy);
  font-weight: 600;
  font-family: var(--font-heading);
  border: 2px solid var(--border-color);
  border-radius: 4px;
  transition: var(--transition);
}

.btn-main-outline:hover {
  border-color: var(--primary-navy);
  color: var(--primary-navy);
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

/* Section Spacing */
.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

/* Loading Spinner */
#spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.spinner-border {
  width: 3rem;
  height: 3rem;
  color: var(--accent-gold);
  border-width: 0.3em;
}

/* Navbar - Transparent over Hero, White on Scroll */
.navbar {
  background: transparent;
  padding: 30px 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}

.navbar.sticky {
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff !important;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: var(--transition);
}

.navbar.sticky .navbar-brand {
  color: var(--primary-navy) !important;
}

.navbar-brand span {
  color: var(--accent-gold);
}

.navbar-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.navbar.sticky .navbar-logo {
  filter: none;
}

@media (max-width: 991.98px) {
  .navbar-brand {
    font-size: 1.4rem;
    gap: 10px;
    white-space: nowrap;
  }
  .navbar-logo {
    height: 42px;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.3rem;
    gap: 8px;
  }
  .navbar-logo {
    height: 38px;
  }
}

@media (max-width: 375px) {
  .navbar-brand {
    font-size: 1.15rem;
    gap: 6px;
  }
  .navbar-logo {
    height: 34px;
  }
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  margin: 0 15px;
  padding: 8px 0 !important;
  position: relative;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.navbar.sticky .nav-link {
  color: var(--text-dark) !important;
}

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

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* HERO SECTION - Dark Overlay Design */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--navy-dark);
  overflow: hidden;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 6, 23, 0.92) 0%,
    rgba(15, 23, 42, 0.85) 40%,
    rgba(15, 23, 42, 0.6) 100%
  );
  z-index: 1;
}

/* Badge */
.badge-main {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  flex-shrink: 0;
}

.badge-dot::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

.badge-text {
  color: rgba(255, 255, 255, 0.9) !important;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Hero Title */
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-title .text-gold {
  position: relative;
  display: inline-block;
}

.hero-title .text-gold::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 4px;
  opacity: 0.6;
}

.hero-lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 560px;
  font-weight: 400;
}

/* Hero Buttons Override */
.hero .btn-main {
  background-color: var(--accent-gold);
  color: var(--navy-dark);
}

.hero .btn-main::before {
  background-color: #ffffff;
}

.hero .btn-main:hover {
  color: var(--navy-dark);
  box-shadow: 0 10px 30px rgba(234, 179, 8, 0.25);
}

.hero .btn-main-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.hero .btn-main-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* Hero Stats */
.hero-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item {
  padding: 4px 0;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.hero-stat-number .text-gold {
  color: var(--accent-gold);
}

.hero-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-top: 2px;
}

/* Section Titles */
.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  bottom: -12px;
  left: 0;
}

.section-subtitle {
  color: var(--text-medium);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* ABOUT SECTION */
.about-section {
  background-color: var(--neutral-gray);
}

.about-content {
  padding: 40px;
}

.about-content h3 {
  color: var(--primary-navy);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-medium);
  margin-bottom: 25px;
}

.about-features {
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.about-feature-icon i {
  color: var(--primary-navy);
  font-size: 1.25rem;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--primary-navy);
  color: var(--accent-gold);
  padding: 25px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(10, 25, 47, 0.2);
}

.experience-badge .number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

/* SERVICES SECTION */
.services-section {
  background-color: #fff;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-gold);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary-navy);
}

.service-card h4 {
  margin-bottom: 15px;
  color: var(--primary-navy);
}

.service-card p {
  color: var(--text-medium);
  margin-bottom: 0;
}

/* WHY CHOOSE US */
.why-us-section {
  background-color: var(--primary-navy);
  color: #fff;
}

.why-us-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.why-us-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.why-us-icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us-icon-box img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.why-us-card h5 {
  color: #fff;
  font-size: 1.05rem;
}

.why-us-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* PROJECTS SECTION */
.projects-section {
  background-color: var(--neutral-gray);
}

.project-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.project-card img {
  width: 100%;
  display: block;
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10, 25, 47, 0.95));
  padding: 40px 25px 25px;
  color: #fff;
  transform: translateY(0);
  transition: var(--transition);
}

.project-overlay h4 {
  margin-bottom: 5px;
  font-size: 1.25rem;
}

.project-overlay p {
  color: var(--accent-gold);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}

/* STATISTICS SECTION */
.stats-section {
  background: linear-gradient(rgba(10, 25, 47, 0.95), rgba(10, 25, 47, 0.95)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&q=80&w=1920");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

/* FAQ SECTION */
.faq-section {
  background-color: var(--neutral-gray);
}

.accordion-button {
  background-color: #fff;
  transition: var(--transition);
  padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
  color: var(--accent-gold);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-body {
  padding: 0 1.25rem 1.25rem;
}

/* CONTACT SECTION */
.contact-section {
  background-color: var(--neutral-gray);
}

.contact-info-card {
  background: var(--primary-navy);
  color: #fff;
  padding: 40px;
  border-radius: 8px;
  height: 100%;
}

.contact-info-card h4 {
  color: var(--accent-gold);
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.contact-detail {
  display: flex;
  margin-bottom: 25px;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-detail-text h6 {
  color: #fff;
  margin-bottom: 5px;
}

.contact-detail-text p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.contact-form-card {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.form-control {
  border: 1px solid var(--border-color);
  padding: 12px 20px;
  border-radius: 4px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* FOOTER */
.footer {
  background-color: var(--primary-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #fff !important;
  font-size: 1.75rem;
  font-weight: 800;
}

.footer-brand span {
  color: var(--accent-gold);
}

.footer-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer h5 {
  color: #fff;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-gold);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

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

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.925rem;
}

.footer-contact li i {
  color: var(--accent-gold);
  margin-top: 4px;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-bottom {
  background-color: var(--navy-dark);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
}

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

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--accent-gold);
  color: var(--primary-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

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

.back-to-top:hover {
  background-color: var(--accent-gold-light);
  color: var(--primary-navy);
  transform: translateY(-3px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 99;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
}

/* Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .navbar {
    background: transparent;
    padding: 20px 0;
  }

  .navbar.sticky {
    background-color: rgba(255, 255, 255, 0.98);
  }

  .navbar .container {
    position: relative;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    border-radius: 0;
    padding: 80px 24px 24px;
    margin-top: 0;
    box-shadow: 0 0 60px rgba(15, 23, 42, 0.15);
    border: none;
    border-right: 1px solid var(--border-color);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1040;
    display: block !important;
    overflow-y: auto;
  }

  .navbar-collapse.collapsing {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100vh !important;
    height: 100dvh !important;
  }

  .navbar-collapse.show {
    transform: translateX(0);
  }

  /* Menu close button */
  .menu-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--neutral-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1041;
  }

  .menu-close-btn:hover {
    background: var(--accent-gold);
    color: #fff;
  }

  .navbar-nav {
    gap: 8px;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    margin: 0;
    padding: 14px 18px !important;
    border-radius: 8px;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0.02em;
    font-weight: 600;
    color: var(--text-dark) !important;
    border: 1px solid transparent;
    width: 100%;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background-color: var(--neutral-gray);
    color: var(--accent-gold) !important;
    border-color: var(--border-color);
  }

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

  .navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 10px 14px;
    border-radius: 8px;
    transition: var(--transition);
    background: transparent;
  }

  .navbar.sticky .navbar-toggler {
    border-color: var(--border-color);
  }

  .navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--accent-gold);
  }

  .navbar-toggler .fa-bars {
    font-size: 1.3rem;
    display: block;
    color: #ffffff;
  }

  .navbar.sticky .navbar-toggler .fa-bars {
    color: var(--text-dark);
  }

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

  .hero-title {
    font-size: clamp(2.5rem, 6.5vw, 4rem);
  }

  .hero-lead {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .d-flex.flex-wrap {
    justify-content: center;
  }

  .hero-stat-number {
    font-size: 1.8rem;
  }

  .section {
    padding: 70px 0;
  }

  .about-content {
    padding: 30px;
  }

  .experience-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

  .hero {
    min-height: 100dvh;
  }

  .hero .row.align-items-center {
    min-height: 100dvh;
    padding: 100px 0 60px !important;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .hero-title .text-gold::after {
    height: 3px;
    bottom: 1px;
  }

  .hero-lead {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 28px !important;
  }

  .hero .badge-main {
    padding: 6px 14px;
    font-size: 0.8rem;
  }

  .hero .d-flex.flex-wrap {
    flex-direction: column;
    gap: 12px !important;
    align-items: stretch;
  }

  .hero .d-flex.flex-wrap .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    margin-top: 30px !important;
    padding-top: 20px !important;
  }

  .hero-stat-number {
    font-size: 1.6rem;
  }

  .hero-stat-label {
    font-size: 0.7rem;
  }
}