/* === Root Variables === */
:root {
  /* Gold & Charcoal Color Palette */
  --gold: #d4af37;
  --gold-dark: #b8941e;
  --gold-light: #e8d090;
  --navy: #1a1f3a;
  --charcoal: #2a2f3e;
  --cream: #faf8f5;
  --warm-gray: #8a8681;

  /* Bootstrap Overrides */
  --bs-body-font-family: "Raleway", sans-serif;
  --bs-heading-font-family: "Playfair Display", serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px -2px rgba(42, 47, 62, 0.08);
  --shadow-md: 0 8px 24px -8px rgba(42, 47, 62, 0.12);
  --shadow-lg: 0 16px 48px -12px rgba(42, 47, 62, 0.16);
  --shadow-gold: 0 8px 32px -8px rgba(212, 175, 55, 0.35);
}

/* === Base Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #333;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

img {
  max-width: 100%;
  height: auto;
}

/* === Custom Text Colors === */
.text-gold {
  color: var(--gold) !important;
}

.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Navigation === */
.navbar {
  transition: all 0.3s ease;
  padding: 1.25rem 0;
  background: transparent;
}

.navbar.scrolled {
  /* background: rgba(255, 255, 255, 0.98) !important; */
    background: black !important;
    backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
}

.navbar .logo {
  height: 50px;
}

.navbar.scrolled .logo {
  height: 45px;
}

.navbar .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar.scrolled .nav-link {
  /* color: #333; */
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
  width: calc(100% - 2rem);
}

.phone-link {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar.scrolled .phone-link {
  color: var(--gold);
}

.phone-link:hover {
  color: var(--gold);
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
  color: white;
}

/* === Hero Section === */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("imgs/hero-bg-Bf2eP0S8.jpg") center / cover no-repeat;
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.85) 0%, rgba(26, 31, 58, 0.6) 100%);
}

.hero-decorative-1,
.hero-decorative-2 {
  position: absolute;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  filter: blur(80px);
  animation: float 6s ease-in-out infinite;
}

.hero-decorative-1 {
  top: 25%;
  right: 10%;
  width: 300px;
  height: 300px;
}

.hero-decorative-2 {
  bottom: 25%;
  left: 10%;
  width: 400px;
  height: 400px;
  animation-delay: 3s;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 100px;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 1.5rem 0;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(212, 175, 55, 0.45);
  color: white;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: white;
}

.hero-stats {
  max-width: 600px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem 1rem;
  text-align: center;
}

.stat-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 1.75rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator:hover {
  color: var(--gold);
}

/* === Animations === */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.fade-in-element {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.fade-in-element[data-delay="200"] {
  animation-delay: 0.2s;
}
.fade-in-element[data-delay="300"] {
  animation-delay: 0.3s;
}
.fade-in-element[data-delay="400"] {
  animation-delay: 0.4s;
}
.fade-in-element[data-delay="500"] {
  animation-delay: 0.5s;
}

/* === Section Styles === */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
}

.section-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #666;
}

/* === About Section === */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.feature-list i {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.about-image-wrapper {
  position: relative;
}

.about-card {
  position: absolute;
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 300px;
}

.mission-card {
  bottom: -1.5rem;
  left: -3rem;
}

.purpose-card {
  top: -1.5rem;
  right: -3rem;
  background: var(--charcoal);
  color: white;
}

.icon-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper i {
  color: var(--gold);
  font-size: 1.25rem;
}

.experience-badge {
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  animation: pulse 3s ease-in-out infinite;
}

.experience-badge i {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.badge-value {
  font-size: 1.75rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.badge-label {
  font-size: 0.75rem;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: var(--shadow-gold);
  }
  50% {
    box-shadow: 0 12px 40px -8px rgba(212, 175, 55, 0.5);
  }
}

/* === Service Cards === */
.service-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 1.75rem;
  color: var(--gold);
}

.service-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
  margin-bottom: 0;
}

/* === Projects Section === */
.bg-charcoal {
  background-color: var(--charcoal);
}

.project-gallery {
  position: relative;
}

.location-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-gold);
  font-size: 0.875rem;
  font-weight: 600;
}

.bg-gold-alpha {
  background: rgba(212, 175, 55, 0.2) !important;
}

.project-stat {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.project-stat i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* === Qualifications Section === */
.years-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.qualification-feature {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.qualification-feature:hover {
  background: #f8f9fa;
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--gold);
}

.certification-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.certification-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.cert-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.certification-card h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.certification-card h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

/* === Contact Section === */
.bg-pattern {
  background-color: #fafafa;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
  background: var(--gold);
}

.contact-info-card:hover .contact-icon i {
  color: white !important;
}

.contact-icon i {
  font-size: 1.25rem;
  color: var(--gold);
}

.contact-link {
  color: #666;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--gold);
}

.trust-indicators {
  margin-top: 1rem;
}

.contact-form-wrapper {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-control,
.form-select {
  border: 1px solid #dee2e6;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* === Footer === */
.footer {
  background-color: var(--charcoal);
}

.footer-logo {
  height: 50px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold);
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--gold);
}

.back-to-top {
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-to-top-icon {
  width: 2rem;
  height: 2rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.back-to-top:hover .back-to-top-icon {
  background: var(--gold);
  color: white;
}

/* === Responsive Design === */
@media (max-width: 991px) {
  .hero-content {
    padding-top: 80px;
  }

  .mission-card,
  .purpose-card {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }

  .experience-badge {
    position: static;
    transform: none;
    margin: 1rem auto 0;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .stat-card {
    padding: 1rem 0.5rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }
}

/* === Utility Classes === */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
