/* Architectural Studio - Judicial Navy & Bronze Theme */
/* Primary Color: #1A4D8F | Secondary Color: #C5A572 */

:root {
  --primary-color: #1A4D8F;
  --secondary-color: #C5A572;
  --dark-navy: #0F2849;
  --light-bronze: #D4B88A;
  --text-dark: #1A1A1A;
  --text-light: #FFFFFF;
  --accent-shadow: rgba(26, 77, 143, 0.15);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Navbar Styling */
.navbar {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-color) 100%) !important;
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: linear-gradient(135deg, rgba(15, 40, 73, 0.98) 0%, rgba(26, 77, 143, 0.98) 100%) !important;
}

.navbar-brand {
  color: var(--text-light) !important;
  font-size: 1.5rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: var(--secondary-color) !important;
  transform: translateX(5px);
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: 80%;
}

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

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

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(197, 165, 114, 0.3) !important;
}

/* Hero Diagonal Section */
.hero-diagonal {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-navy) 100%);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  padding-bottom: 8rem;
}

.hero-diagonal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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"/><path d="M0 0L50 50L0 100" stroke="rgba(197,165,114,0.1)" stroke-width="0.5" fill="none"/></svg>');
  opacity: 0.3;
  animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
  0% { transform: translateX(0); }
  100% { transform: translateX(100px); }
}

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

.hero-diagonal .display-3 {
  font-weight: 700;
  color: var(--text-light) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero-diagonal .lead {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1.25rem;
  line-height: 1.8;
  animation: fadeInUp 1.2s ease;
}

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

/* Buttons */
.btn {
  border-radius: 50px;
  padding: 0.75rem 2rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-light) !important;
}

.btn-primary:hover {
  background: var(--dark-navy) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(26, 77, 143, 0.3) !important;
  color: var(--text-light) !important;
}

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

.btn-outline-light:hover {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--dark-navy) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(197, 165, 114, 0.4) !important;
}

.btn-light {
  background: var(--text-light) !important;
  color: var(--primary-color) !important;
  border-color: var(--text-light) !important;
}

.btn-light:hover {
  background: var(--secondary-color) !important;
  color: var(--text-light) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(197, 165, 114, 0.4) !important;
}

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

.btn-outline-secondary:hover {
  background: var(--secondary-color) !important;
  color: var(--text-light) !important;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem !important;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.4rem 1rem !important;
  font-size: 0.875rem;
}

/* Contact Card Float */
.contact-card-float {
  background: var(--text-light);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--secondary-color);
  animation: floatCard 3s ease-in-out infinite;
  z-index: 10;
  position: relative;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.contact-card-float .form-label {
  color: var(--primary-color) !important;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-card-float .form-control,
.contact-card-float .form-select {
  border: 2px solid #E0E0E0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  color: var(--text-dark) !important;
  background: var(--text-light) !important;
}

.contact-card-float .form-control:focus,
.contact-card-float .form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(197, 165, 114, 0.25) !important;
  color: var(--text-dark) !important;
}

/* Form Controls */
.form-control,
.form-select {
  border: 2px solid #DDD;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  color: var(--text-dark) !important;
  background: var(--text-light) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.25rem var(--accent-shadow) !important;
  color: var(--text-dark) !important;
}

.form-control::placeholder {
  color: #999 !important;
}

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

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem var(--accent-shadow) !important;
}

/* Hexagon Tiles */
.hexagon-tile {
  position: relative;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
}

.hex-inner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-navy) 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px var(--accent-shadow);
}

.hex-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 165, 114, 0.2) 0%, transparent 70%);
  transition: all 0.4s ease;
  opacity: 0;
}

.hexagon-tile:hover .hex-inner {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(26, 77, 143, 0.3);
}

.hexagon-tile:hover .hex-inner::before {
  opacity: 1;
  animation: pulse 2s infinite;
}

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

.hexagon-tile .bi {
  font-size: 3rem;
  color: var(--secondary-color) !important;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.hexagon-tile:hover .bi {
  transform: scale(1.2) rotate(5deg);
  color: var(--light-bronze) !important;
}

.hexagon-tile h3 {
  color: var(--text-light) !important;
  font-weight: 600;
  margin-top: 1rem;
  font-size: 1.25rem;
}

.hexagon-tile p {
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Testimonial Parallax */
.testimonial-parallax {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.parallax-bg {
  background: linear-gradient(135deg, rgba(26, 77, 143, 0.95) 0%, rgba(15, 40, 73, 0.95) 100%),
              url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="%23C5A572" opacity="0.1" width="50" height="50"/></svg>');
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.testimonial-parallax .carousel {
  z-index: 2;
}

.testimonial-parallax .card {
  background: rgba(255, 255, 255, 0.98) !important;
  border-radius: 20px;
  border: none !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2) !important;
}

.testimonial-parallax .bi-quote {
  font-size: 3rem;
  color: var(--secondary-color) !important;
  opacity: 0.5;
}

.testimonial-parallax .text-muted {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.carousel-indicators button {
  background-color: var(--secondary-color) !important;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}

.carousel-indicators button.active {
  background-color: var(--text-light) !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 2rem;
}

/* Values Card */
.values-card {
  background: var(--text-light);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  height: 100%;
}

.values-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(26, 77, 143, 0.2);
  border-color: var(--secondary-color);
}

.values-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-navy) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.values-card:hover .values-icon {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--light-bronze) 100%);
}

.values-icon .bi {
  font-size: 2rem;
  color: var(--text-light) !important;
}

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

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

/* Timeline */
.timeline-container {
  position: relative;
  padding: 3rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-content {
  background: var(--text-light);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(26, 77, 143, 0.2);
}

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

/* Attorney Profile */
.attorney-profile {
  background: var(--text-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.attorney-profile:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(26, 77, 143, 0.2);
  border-color: var(--secondary-color);
}

.profile-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.profile-image-wrapper img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.attorney-profile:hover .profile-image-wrapper img {
  transform: scale(1.1);
}

.profile-card {
  padding: 2rem;
}

.bio-content {
  color: var(--text-dark) !important;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.bio-expand {
  max-height: 150px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.bio-expand.show {
  max-height: 1000px;
}

/* Case Card */
.case-card {
  background: var(--text-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: none !important;
  height: 100%;
}

.case-card.hover-lift:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(26, 77, 143, 0.2);
}

.case-card .card-img-top {
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

.case-card .badge {
  background: var(--secondary-color) !important;
  color: var(--text-light) !important;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

.case-card .card-title {
  color: var(--primary-color) !important;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

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

/* Filter Tags */
.filter-tag {
  border: 2px solid var(--secondary-color) !important;
  color: var(--secondary-color) !important;
  background: var(--text-light) !important;
  border-radius: 20px;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
  font-weight: 600;
}

.filter-tag:hover,
.filter-tag.active {
  background: var(--secondary-color) !important;
  color: var(--text-light) !important;
  transform: translateY(-2px);
}

/* Featured Post */
.featured-post {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.featured-post:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(26, 77, 143, 0.3);
}

.featured-post img {
  height: 400px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.featured-post:hover img {
  transform: scale(1.1);
}

/* Modal */
.modal-content {
  border-radius: 20px !important;
  border: none !important;
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-navy) 100%) !important;
  color: var(--text-light) !important;
  padding: 1.5rem 2rem;
  border-bottom: 3px solid var(--secondary-color) !important;
}

.modal-title {
  color: var(--text-light) !important;
  font-weight: 700;
}

.btn-close,
.btn-close-white {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.modal-body {
  padding: 2rem;
}

/* Alert */
.alert-light {
  background: rgba(197, 165, 114, 0.1) !important;
  border: 2px solid var(--secondary-color) !important;
  color: var(--text-dark) !important;
  border-radius: 10px;
}

/* Pagination */
.pagination .page-item .page-link {
  color: var(--primary-color) !important;
  border: 2px solid #DDD;
  margin: 0 3px;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 600;
  background: var(--text-light) !important;
}

.pagination .page-item.active .page-link {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-light) !important;
}

.pagination .page-item .page-link:hover {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
}

/* Input Group */
.input-group-text {
  background: var(--text-light) !important;
  border: 2px solid #DDD;
  color: var(--primary-color) !important;
}

.input-group .form-control {
  border-left: none;
}

.input-group .form-control:focus {
  border-color: var(--primary-color) !important;
}

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

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

/* Privacy Content */
.privacy-content h2,
.privacy-content h3,
.privacy-content h4 {
  color: var(--primary-color) !important;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-content p,
.privacy-content li {
  color: var(--text-dark) !important;
  line-height: 1.9;
}

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

/* Sticky Sidebar */
.position-sticky {
  top: 100px;
}

.card-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-navy) 100%) !important;
  color: var(--text-light) !important;
  font-weight: 700;
  padding: 1rem 1.5rem;
  border: none !important;
}

.nav-link.text-dark {
  color: var(--text-dark) !important;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-link.text-dark:hover,
.nav-link.text-dark.active {
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
  transform: translateX(5px);
}

/* Icons */
.bi {
  transition: all 0.3s ease;
}

.bi-briefcase-fill,
.bi-building,
.bi-globe,
.bi-shield-check,
.bi-lightbulb-fill,
.bi-file-earmark-text,
.bi-bullseye,
.bi-chat-square-text,
.bi-speedometer2,
.bi-graph-up-arrow {
  color: var(--secondary-color) !important;
}

.bi-check-circle-fill {
  color: var(--secondary-color) !important;
  font-size: 1.2rem;
}

.bi-quote {
  color: var(--secondary-color) !important;
}

/* Text Colors */
.text-muted {
  color: #6C757D !important;
}

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

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

/* Background Colors */
.bg-light {
  background-color: #F8F9FA !important;
}

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

/* Display Text */
.display-3,
.display-4,
.display-5,
.display-6 {
  font-weight: 700;
  color: var(--primary-color) !important;
  line-height: 1.2;
}

.hero-diagonal .display-3,
.testimonial-parallax .display-5,
.parallax-bg .display-3 {
  color: var(--text-light) !important;
}

/* Section Styling */
section {
  padding: 5rem 0;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-color) 100%);
  color: var(--text-light) !important;
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

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

footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

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

footer .bi {
  color: var(--secondary-color) !important;
}

footer .text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Links */
a {
  color: var(--primary-color) !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color) !important;
}

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

/* Shadows */
.shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

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

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

/* Rounded */
.rounded {
  border-radius: 15px !important;
}

.rounded-3 {
  border-radius: 20px !important;
}

/* Masonry Grid */
.masonry-grid {
  column-count: 2;
  column-gap: 1.5rem;
}

.masonry-grid .col {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

/* Hover Effects */
.hover-lift {
  transition: all 0.4s ease;
}

.hover-lift:hover {
  transform: translateY(-10px);
}

/* Object Fit */
.object-fit-cover {
  object-fit: cover !important;
}

/* Responsive Images */
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(15, 40, 73, 0.98);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
  }

  .hero-diagonal {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    padding-bottom: 4rem;
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-marker {
    left: 20px;
  }

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

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

  .display-5 {
    font-size: 1.75rem !important;
  }

  .masonry-grid {
    column-count: 1;
  }

  section {
    padding: 3rem 0;
  }
}

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

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

  .btn-lg {
    padding: 0.8rem 2rem !important;
  }

  .hexagon-tile {
    padding: 2rem 1rem;
  }

  .hex-inner {
    padding: 2rem 1rem;
  }

  .hexagon-tile .bi {
    font-size: 2rem;
  }

  .contact-card-float {
    margin-top: 2rem;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .values-icon {
    width: 60px;
    height: 60px;
  }

  .values-icon .bi {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-diagonal {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  section {
    padding: 2rem 0;
  }

  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .d-flex.gap-3 {
    flex-direction: column;
  }
}

/* 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-fade-in {
  animation: fadeIn 1s ease;
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease;
}

/* Scroll Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Loading Spinner */
.spinner-border {
  border-color: var(--secondary-color) !important;
  border-right-color: transparent !important;
}

/* Utility Classes */
.fw-bold {
  font-weight: 700 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #F1F1F1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Selection */
::selection {
  background: var(--secondary-color);
  color: var(--text-light);
}

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