/* ===================================
   Onyx Gold Architecture Studio Theme
   Primary: #1a1a2e (Onyx)
   Secondary: #d4af37 (Gold)
   =================================== */

:root {
  --primary-color: #1a1a2e;
  --secondary-color: #d4af37;
  --accent-gold: #f4d03f;
  --light-gold: #f5e6c8;
  --dark-onyx: #0f0f1e;
  --text-light: #ffffff;
  --text-muted: #b8b8c8;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===================================
   NAVBAR STYLES
   =================================== */

.navbar {
  background: rgba(26, 26, 46, 0.95) !important;
  backdrop-filter: blur(10px);
  padding: 1.2rem 0 !important;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
  padding: 0.8rem 0 !important;
  background: rgba(15, 15, 30, 0.98) !important;
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.2);
}

.navbar-brand {
  font-size: 1.8rem !important;
  color: var(--secondary-color) !important;
  letter-spacing: 2px;
  font-weight: 800 !important;
  text-transform: uppercase;
  transition: var(--transition);
}

.navbar-brand:hover {
  color: var(--accent-gold) !important;
  transform: translateY(-2px);
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500 !important;
  padding: 0.8rem 1.5rem !important;
  position: relative;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.navbar-dark .navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 1.5rem;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--secondary-color) !important;
}

.navbar-dark .navbar-nav .nav-link:hover::before,
.navbar-dark .navbar-nav .nav-link.active::before {
  width: calc(100% - 3rem);
}

.navbar-toggler {
  border: 2px solid var(--secondary-color) !important;
  padding: 0.5rem 0.75rem !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 175, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
  min-height: 100vh;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--dark-onyx) 0%, var(--primary-color) 100%);
  position: relative;
  overflow: hidden;
}

.parallax-container {
  position: relative;
  z-index: 2;
}

.hero-left {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 90vh;
  position: relative;
}

.gold-accent-lines {
  position: absolute;
  left: 0;
  top: 10%;
  width: 100%;
  height: 80%;
  pointer-events: none;
  z-index: 1;
}

.accent-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
  height: 1px;
  width: 100%;
  opacity: 0.3;
  animation: shimmer 3s infinite;
}

.accent-line:nth-child(1) {
  top: 20%;
  animation-delay: 0s;
}

.accent-line:nth-child(2) {
  top: 50%;
  animation-delay: 1s;
}

.accent-line:nth-child(3) {
  top: 80%;
  animation-delay: 2s;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.2; transform: translateX(-100%); }
  50% { opacity: 0.5; transform: translateX(100%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.display-3 {
  font-weight: 800 !important;
  color: var(--text-light) !important;
  line-height: 1.2 !important;
  margin-bottom: 1.5rem !important;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.display-3 span {
  color: var(--secondary-color) !important;
  display: block;
  font-size: 1.2em;
}

.lead {
  font-size: 1.2rem !important;
  color: var(--text-muted) !important;
  line-height: 1.8 !important;
  font-weight: 400 !important;
}

.btn {
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 1rem 2.5rem !important;
  border-radius: 0 !important;
  transition: var(--transition) !important;
  border-width: 2px !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

.btn:hover::before {
  left: 0;
}

.btn-lg {
  padding: 1.2rem 3rem !important;
  font-size: 1rem !important;
}

.btn-outline-light {
  border-color: var(--secondary-color) !important;
  color: var(--secondary-color) !important;
  background: transparent !important;
}

.btn-outline-light:hover {
  background: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-outline-dark {
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
  background: var(--secondary-color) !important;
}

.btn-outline-dark:hover {
  background: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26, 26, 46, 0.3);
}

.btn-sm {
  padding: 0.6rem 1.5rem !important;
  font-size: 0.85rem !important;
}

.hero-right {
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.floating-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: float 6s ease-in-out infinite;
  width: 100%;
  max-width: 500px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   CAROUSEL STYLES
   =================================== */

.testimonial-carousel,
.carousel {
  position: relative;
}

.carousel-indicators {
  bottom: -40px !important;
}

.carousel-indicators [data-bs-target] {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: var(--text-muted) !important;
  border: none !important;
  opacity: 0.5 !important;
}

.carousel-indicators .active {
  background-color: var(--secondary-color) !important;
  opacity: 1 !important;
}

.carousel-inner {
  padding: 2rem 0;
}

.carousel-item {
  text-align: center;
  color: var(--text-light) !important;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bi-quote {
  font-size: 3rem;
  color: var(--secondary-color) !important;
  margin-bottom: 1rem;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-overview {
  padding: 6rem 0;
  background: var(--primary-color);
  position: relative;
}

.services-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--secondary-color);
}

.display-4 {
  font-weight: 800 !important;
  color: var(--text-light) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 3rem 2rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--secondary-color);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .bi {
  font-size: 3rem;
  color: var(--secondary-color) !important;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .bi {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  color: var(--text-light) !important;
  font-weight: 700 !important;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card p {
  color: var(--text-muted) !important;
  line-height: 1.8;
}

.bi-briefcase,
.bi-shield-check,
.bi-file-earmark-text,
.bi-arrow-left-right,
.bi-people,
.bi-building,
.bi-briefcase-fill,
.bi-file-text-fill,
.bi-diagram-3-fill,
.bi-people-fill,
.bi-trophy-fill,
.bi-award,
.bi-check-circle-fill,
.bi-clock-history,
.bi-chat-dots,
.bi-lightning-charge,
.bi-flag-fill,
.bi-star-fill,
.bi-geo-alt-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-arrow-right,
.bi-clock-fill,
.bi-chat-dots-fill,
.bi-percent,
.bi-currency-dollar,
.bi-info-circle-fill,
.bi-check-lg,
.bi-geo-alt,
.bi-telephone,
.bi-envelope {
  display: inline-block;
  vertical-align: middle;
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */

.why-choose-us {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-onyx) 100%);
}

.why-choose-us .row {
  align-items: center;
}

.why-choose-us img {
  width: 100%;
  height: auto;
  border: 3px solid var(--secondary-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.why-choose-us h2 {
  color: var(--secondary-color) !important;
  font-weight: 800 !important;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.why-choose-us .bi-check-lg {
  color: var(--secondary-color) !important;
  font-size: 1.5rem;
  margin-right: 1rem;
}

.why-choose-us li {
  color: var(--text-light) !important;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: start;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
  padding: 6rem 0;
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(26, 26, 46, 0.1);
  border-radius: 50%;
  animation: pulse 4s infinite;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(26, 26, 46, 0.1);
  border-radius: 50%;
  animation: pulse 4s infinite 2s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

.cta-section h2 {
  color: var(--primary-color) !important;
  font-weight: 800 !important;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cta-section p {
  color: var(--primary-color) !important;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* ===================================
   FOOTER STYLES
   =================================== */

footer {
  background: var(--dark-onyx) !important;
  padding: 4rem 0 2rem;
  border-top: 2px solid var(--secondary-color);
}

footer h5 {
  color: var(--secondary-color) !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

footer .list-unstyled li {
  margin-bottom: 0.8rem;
}

footer a {
  color: var(--text-muted) !important;
  text-decoration: none !important;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

footer a:hover {
  color: var(--secondary-color) !important;
  padding-left: 5px;
}

footer p {
  color: var(--text-muted) !important;
  line-height: 1.8;
}

footer .bi {
  color: var(--secondary-color) !important;
  margin-right: 0.5rem;
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */

.about-hero {
  min-height: 60vh;
  background: linear-gradient(135deg, var(--dark-onyx) 0%, var(--primary-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></svg>');
  opacity: 0.3;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-light) !important;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.about-hero p {
  font-size: 1.3rem;
  color: var(--text-muted) !important;
  max-width: 700px;
  margin: 0 auto;
}

.py-5 {
  padding: 4rem 0 !important;
}

/* ===================================
   TIMELINE STYLES
   =================================== */

.timeline-section {
  padding: 6rem 0;
  background: var(--primary-color);
  position: relative;
}

.timeline-item {
  padding: 2rem 0;
  position: relative;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  border-radius: 50%;
  border: 4px solid var(--primary-color);
  left: 50%;
  transform: translateX(-50%);
  top: 2rem;
  z-index: 2;
}

.timeline-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary-color);
  transform: translateX(-50%);
  opacity: 0.3;
}

.timeline-item .card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  transition: var(--transition);
}

.timeline-item .card:hover {
  background: rgba(212, 175, 55, 0.1) !important;
  border-color: var(--secondary-color) !important;
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2) !important;
}

.card-body {
  padding: 2rem !important;
}

.card-body h4 {
  color: var(--secondary-color) !important;
  font-weight: 700 !important;
  margin-bottom: 1rem;
}

.card-body p {
  color: var(--text-muted) !important;
  line-height: 1.8;
}

/* ===================================
   ACCORDION STYLES
   =================================== */

.accordion {
  --bs-accordion-bg: rgba(255, 255, 255, 0.03) !important;
  --bs-accordion-border-color: rgba(212, 175, 55, 0.2) !important;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  margin-bottom: 1rem;
}

.accordion-button {
  background: rgba(212, 175, 55, 0.1) !important;
  color: var(--text-light) !important;
  font-weight: 600 !important;
  padding: 1.5rem !important;
  font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
  background: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  border-color: var(--secondary-color) !important;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0);
}

.accordion-body {
  background: rgba(255, 255, 255, 0.02) !important;
  color: var(--text-muted) !important;
  padding: 2rem !important;
  line-height: 1.8;
}

/* ===================================
   FIRM PHILOSOPHY STYLES
   =================================== */

.firm-philosophy {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-onyx) 100%);
}

.firm-philosophy .card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  padding: 2.5rem;
  height: 100%;
  transition: var(--transition);
}

.firm-philosophy .card:hover {
  background: rgba(212, 175, 55, 0.1) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2) !important;
}

.firm-philosophy .bi {
  color: var(--secondary-color) !important;
  font-size: 2.5rem;
}

.firm-philosophy h4 {
  color: var(--text-light) !important;
  font-weight: 700 !important;
  margin: 1rem 0;
}

.firm-philosophy p {
  color: var(--text-muted) !important;
  line-height: 1.8;
}

/* ===================================
   MILESTONE STYLES
   =================================== */

.milestone-item {
  padding: 2rem 0;
}

.milestone-item h3 {
  color: var(--secondary-color) !important;
  font-weight: 800 !important;
  font-size: 3rem;
}

.milestone-item p {
  color: var(--text-muted) !important;
  margin-top: 0.5rem;
}

.badge {
  background: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  padding: 0.6rem 1.2rem !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  letter-spacing: 1px;
}

/* ===================================
   FORM STYLES
   =================================== */

.form-floating {
  margin-bottom: 1.5rem;
}

.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  color: var(--text-light) !important;
  padding: 1rem !important;
  border-radius: 0 !important;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--secondary-color) !important;
  color: var(--text-light) !important;
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.15) !important;
}

.form-control::placeholder {
  color: var(--text-muted) !important;
  opacity: 0.7;
}

.form-floating label {
  color: var(--text-muted) !important;
  padding: 1rem !important;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  color: var(--secondary-color) !important;
}

.form-check-input {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 2px solid rgba(212, 175, 55, 0.3) !important;
  width: 1.5em !important;
  height: 1.5em !important;
}

.form-check-input:checked {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.15) !important;
  border-color: var(--secondary-color) !important;
}

.form-check-label {
  color: var(--text-light) !important;
  margin-left: 0.5rem;
}

/* ===================================
   PRACTICE MASONRY GRID
   =================================== */

.practice-masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.practice-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: var(--transition);
}

.practice-card:hover::before {
  left: 100%;
}

.practice-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.practice-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.practice-card:hover .icon-wrapper {
  background: var(--secondary-color);
  transform: rotate(5deg) scale(1.1);
}

.icon-wrapper .bi {
  font-size: 2rem;
  color: var(--secondary-color) !important;
}

.practice-card:hover .icon-wrapper .bi {
  color: var(--primary-color) !important;
}

.practice-details h3 {
  color: var(--text-light) !important;
  font-weight: 700 !important;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.practice-details p {
  color: var(--text-muted) !important;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ===================================
   CASE STUDIES FILTER
   =================================== */

.filter-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 2px solid rgba(212, 175, 55, 0.3) !important;
  color: var(--text-light) !important;
  padding: 0.8rem 2rem !important;
  margin: 0.5rem !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
  border-radius: 0 !important;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

.case-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.case-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.case-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.case-card:hover img {
  transform: scale(1.1);
}

.card-title {
  color: var(--text-light) !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.card-text {
  color: var(--text-muted) !important;
  line-height: 1.8;
}

/* ===================================
   UTILITIES
   =================================== */

.text-light {
  color: var(--text-light) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.shadow-sm {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.shadow-lg {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
}

.border-0 {
  border: none !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
  top: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

/* ===================================
   CHAT BUTTON
   =================================== */

.position-fixed {
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.position-fixed .btn {
  width: 60px;
  height: 60px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color) !important;
  border: none !important;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4) !important;
  animation: pulse-chat 2s infinite;
}

@keyframes pulse-chat {
  0%, 100% { box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 10px 40px rgba(212, 175, 55, 0.6); }
}

.position-fixed .btn .bi {
  font-size: 1.8rem;
  color: var(--primary-color) !important;
}

.position-fixed .btn:hover {
  transform: scale(1.1);
  background: var(--accent-gold) !important;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(15, 15, 30, 0.98);
    padding: 1rem;
    margin-top: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
  }

  .navbar-nav {
    align-items: flex-start !important;
  }

  .navbar-dark .navbar-nav .nav-link::before {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding-top: 100px;
  }

  .hero-left,
  .hero-right {
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  .display-3 {
    font-size: 2.5rem !important;
  }

  .floating-card {
    margin-top: 2rem;
  }

  .timeline-marker {
    left: 20px;
    transform: none;
  }

  .timeline-section::before {
    left: 20px;
    transform: none;
  }

  .practice-masonry-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .display-3 {
    font-size: 2rem !important;
  }

  .display-4 {
    font-size: 1.8rem !important;
  }

  .btn-lg {
    padding: 1rem 2rem !important;
    font-size: 0.9rem !important;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .services-overview,
  .why-choose-us,
  .cta-section,
  .timeline-section,
  .firm-philosophy {
    padding: 4rem 0;
  }

  footer {
    text-align: center;
  }

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

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

  .milestone-item h3 {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .display-3 {
    font-size: 1.8rem !important;
  }

  .lead {
    font-size: 1rem !important;
  }

  .btn {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.85rem !important;
  }

  .hero-left,
  .hero-right {
    padding: 2rem 1rem;
  }

  .floating-card {
    padding: 2rem 1.5rem;
  }

  .service-card .bi {
    font-size: 2.5rem;
  }

  .position-fixed {
    bottom: 20px;
    right: 20px;
  }

  .position-fixed .btn {
    width: 50px;
    height: 50px;
  }

  .position-fixed .btn .bi {
    font-size: 1.5rem;
  }
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   SCROLL BAR CUSTOM STYLES
   =================================== */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* ===================================
   SELECTION STYLES
   =================================== */

::selection {
  background: var(--secondary-color);
  color: var(--primary-color);
}

::-moz-selection {
  background: var(--secondary-color);
  color: var(--primary-color);
}