/* Frost & Gold Architecture Studio - Custom Styles */

:root {
  --primary-color: #1A4D8F;
  --secondary-color: #C5A572;
  --primary-dark: #0F3A6F;
  --primary-light: #2A5D9F;
  --secondary-dark: #A58A5A;
  --secondary-light: #D5B582;
  --frost-white: #F8FBFF;
  --gold-accent: #D4AF37;
  --text-dark: #1A1A1A;
  --text-light: #F5F5F5;
  --shadow-color: rgba(26, 77, 143, 0.15);
  --gold-shadow: rgba(197, 165, 114, 0.25);
}

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

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

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

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 6px 30px var(--shadow-color);
}

.navbar-brand {
  color: var(--text-light) !important;
  font-size: 1.8rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.navbar-dark .navbar-toggler {
  border-color: var(--secondary-color) !important;
  background-color: rgba(197, 165, 114, 0.2) !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem var(--gold-shadow) !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='%23C5A572' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-nav {
  align-items: center;
}

.nav-item {
  margin: 0 0.5rem;
  position: relative;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 6px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px);
}

.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%);
}

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2A5D9F 50%, var(--primary-dark) 100%);
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, rgba(197, 165, 114, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(197, 165, 114, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(197, 165, 114, 0.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(197, 165, 114, 0.05) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  animation: heroPattern 60s linear infinite;
  opacity: 0.6;
}

@keyframes heroPattern {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.hero-section .position-relative {
  z-index: 2;
}

.hero-content {
  color: var(--text-light);
  animation: fadeInUp 1s ease-out;
}

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

.hero-content .display-3 {
  font-weight: 800;
  color: var(--text-light) !important;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
  margin-bottom: 1.5rem !important;
}

.tagline-container {
  border-left: 4px solid var(--secondary-color);
  padding-left: 1.5rem;
  margin: 2rem 0;
  animation: slideInLeft 1s ease-out 0.3s both;
}

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

.lead.fs-3,
.lead.fs-5 {
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Contact Card Hero */
.contact-card-hero {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid var(--secondary-color);
  animation: fadeInRight 1s ease-out 0.5s both;
  max-width: 450px;
  margin: 0 auto;
}

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

.contact-card-hero h3 {
  color: var(--primary-color) !important;
  font-weight: 700;
}

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

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

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

.form-floating > label {
  color: #666666 !important;
}

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

/* Buttons */
.btn {
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
  color: var(--text-light) !important;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px var(--shadow-color);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light)) !important;
  color: var(--text-dark) !important;
  box-shadow: 0 4px 15px var(--gold-shadow);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color)) !important;
  color: var(--text-dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px var(--gold-shadow);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  background: transparent !important;
}

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

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

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

.btn-light {
  background: #FFFFFF !important;
  color: var(--primary-color) !important;
  border: 2px solid #E0E0E0 !important;
}

.btn-light:hover {
  background: var(--frost-white) !important;
  color: var(--primary-dark) !important;
  border-color: var(--primary-color) !important;
}

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

.btn-sm {
  padding: 0.5rem 1.5rem !important;
  font-size: 0.875rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(to bottom, var(--frost-white), #FFFFFF);
  padding: 5rem 0 !important;
}

.services-section .display-5 {
  color: var(--primary-color) !important;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.services-section .display-5::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--gold-accent));
  border-radius: 2px;
}

.services-grid {
  margin-top: 3rem;
}

.service-tile {
  transition: all 0.4s ease;
  height: 100%;
  border-radius: 15px !important;
  overflow: hidden;
  background: #FFFFFF;
}

.service-tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-color) !important;
}

.card {
  border: none !important;
}

.card-img-container {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-tile:hover .card-img-top {
  transform: scale(1.1);
  opacity: 0.9;
}

.card-body {
  padding: 1.5rem;
}

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

.service-description,
.card-text {
  color: #555555 !important;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Why Choose Section */
.why-choose-section {
  background: #FFFFFF;
  padding: 5rem 0;
}

.why-choose-section h2 {
  color: var(--primary-color) !important;
  font-weight: 800;
}

.why-choose-section img {
  border: 5px solid var(--secondary-color);
  box-shadow: 0 10px 40px var(--shadow-color);
  transition: all 0.4s ease;
}

.why-choose-section img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px var(--shadow-color);
}

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

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

/* Lists */
.list-unstyled li {
  padding: 0.75rem 0;
  color: var(--text-dark);
  font-size: 1.05rem;
  position: relative;
  padding-left: 2rem;
}

.list-unstyled li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.3rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-color), var(--gold-accent));
  color: var(--text-dark) !important;
  padding: 4rem 0 !important;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

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

.cta-section .display-6 {
  color: var(--text-dark) !important;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

/* Banner Section */
.banner-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color), var(--primary-light));
  color: var(--text-light) !important;
  padding: 3rem 0;
  position: relative;
}

.banner-content h2 {
  color: var(--text-light) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Timeline Section */
.timeline-section {
  background: var(--frost-white);
  padding: 5rem 0;
}

.timeline-section h2 {
  color: var(--primary-color) !important;
  font-weight: 800;
}

.text-muted {
  color: #666666 !important;
}

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

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

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  width: 30px;
  height: 30px;
  background: var(--secondary-color);
  border: 5px solid var(--primary-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 10px rgba(26, 77, 143, 0.1);
}

.timeline-content {
  width: 45%;
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px var(--shadow-color);
}

/* Attorney/Team Profile */
.attorney-profile {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 25px var(--shadow-color);
  transition: all 0.4s ease;
  margin-bottom: 2rem;
}

.attorney-profile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px var(--shadow-color);
}

.attorney-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--secondary-color);
  margin-right: 2rem;
}

.attorney-info h3 {
  color: var(--primary-color) !important;
  font-weight: 700;
}

.attorney-info p {
  color: #555555;
}

.expand-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color) !important;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

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

.bio-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: var(--frost-white);
  padding: 0 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.bio-panel.active {
  max-height: 500px;
  padding: 1.5rem;
}

/* Text Utilities */
.text-white {
  color: #FFFFFF !important;
}

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

.text-muted {
  color: #6C757D !important;
}

.text-success {
  color: #28A745 !important;
}

.text-danger {
  color: #DC3545 !important;
}

/* Badges */
.badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  background: var(--secondary-color) !important;
  color: var(--text-dark) !important;
}

/* Progress */
.progress-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: conic-gradient(var(--secondary-color) 0deg, var(--primary-color) 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.progress-circle::before {
  content: '';
  position: absolute;
  width: 65px;
  height: 65px;
  background: #FFFFFF;
  border-radius: 50%;
}

/* Cards and Panels */
.case-card,
.shadow,
.shadow-sm,
.shadow-lg {
  background: #FFFFFF;
  border-radius: 15px;
  transition: all 0.3s ease;
}

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

.shadow {
  box-shadow: 0 5px 20px var(--shadow-color) !important;
}

.shadow-lg {
  box-shadow: 0 10px 40px var(--shadow-color) !important;
}

.case-card:hover {
  box-shadow: 0 15px 50px var(--shadow-color) !important;
  transform: translateY(-5px);
}

/* Card Header */
.card-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
  color: var(--text-light) !important;
  border-bottom: 3px solid var(--secondary-color) !important;
  font-weight: 700;
  padding: 1.25rem;
  border-radius: 15px 15px 0 0 !important;
}

/* Privacy/Content Sections */
.privacy-section {
  padding: 2rem;
  background: #FFFFFF;
  border-radius: 15px;
  margin-bottom: 2rem;
}

/* Accordion */
.accordion-item {
  border: 2px solid #E0E0E0 !important;
  border-radius: 10px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  background: var(--frost-white) !important;
  color: var(--primary-color) !important;
  font-weight: 700;
  padding: 1.25rem 1.5rem;
  border: none !important;
  transition: all 0.3s ease;
}

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

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem var(--shadow-color) !important;
}

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

.accordion-button.collapsed::after {
  filter: none;
}

.accordion-collapse {
  border-top: 2px solid var(--secondary-color);
}

.accordion-body {
  padding: 1.5rem;
  background: #FFFFFF;
  color: var(--text-dark) !important;
}

/* Alerts */
.alert {
  border-radius: 10px;
  border: none;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.alert-warning {
  background: linear-gradient(135deg, #FFF3CD, #FFE8A1) !important;
  color: #856404 !important;
  border-left: 5px solid #FFC107 !important;
}

/* Bootstrap Icons */
.bi {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.2rem;
}

.bi-geo-alt-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-clock,
.bi-circle-fill,
.bi-info-circle,
.bi-lightning-fill,
.bi-arrow-right,
.bi-calendar-check,
.bi-shield-check,
.bi-envelope-open,
.bi-telephone,
.bi-printer,
.bi-collection,
.bi-gear,
.bi-share,
.bi-lock,
.bi-exclamation-triangle,
.bi-cookie,
.bi-person-check,
.bi-link-45deg,
.bi-arrow-clockwise,
.bi-envelope,
.bi-folder-check,
.bi-grid-3x3-gap,
.bi-file-earmark-text,
.bi-house-door,
.bi-hammer,
.bi-heart-pulse,
.bi-clipboard-data,
.bi-calendar3,
.bi-eye,
.bi-file-text,
.bi-calculator,
.bi-question-circle,
.bi-book,
.bi-briefcase {
  color: var(--secondary-color);
}

/* Filter Chips */
.filter-chip {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #FFFFFF;
  border: 2px solid var(--primary-color);
  color: var(--primary-color) !important;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0.25rem;
  font-weight: 600;
}

.filter-chip:hover,
.filter-chip.active {
  background: var(--primary-color);
  color: var(--text-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow-color);
}

/* Sticky Elements */
.sticky-top,
.position-sticky {
  position: sticky !important;
  top: 20px;
  z-index: 100;
}

/* Table of Contents */
.toc-link {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--primary-color) !important;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  font-weight: 500;
}

.toc-link:hover,
.toc-link.active {
  background: var(--frost-white);
  border-left-color: var(--secondary-color);
  color: var(--primary-dark) !important;
  padding-left: 1.5rem;
}

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

footer h5 {
  color: var(--secondary-color) !important;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

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

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

/* Form Check */
.form-check-input {
  border: 2px solid var(--primary-color);
  cursor: pointer;
}

.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(--shadow-color) !important;
}

.form-check-label {
  color: var(--text-dark) !important;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(26, 77, 143, 0.98);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 5px 20px var(--shadow-color);
  }
  
  .nav-item {
    margin: 0.5rem 0;
  }
  
  .hero-section {
    min-height: auto;
    padding: 3rem 0;
  }
  
  .hero-content .display-3 {
    font-size: 2.5rem;
  }
  
  .timeline-line {
    left: 30px;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: row !important;
    padding-left: 80px;
  }
  
  .timeline-content {
    width: 100%;
  }
  
  .attorney-photo {
    width: 100px;
    height: 100px;
    margin-right: 1rem;
  }
  
  .d-lg-block {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .hero-content .display-3 {
    font-size: 2rem;
  }
  
  .lead.fs-3 {
    font-size: 1.25rem !important;
  }
  
  .lead.fs-5 {
    font-size: 1rem !important;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .display-5 {
    font-size: 1.75rem;
  }
  
  .display-6 {
    font-size: 1.5rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem;
  }
  
  .contact-card-hero {
    margin-top: 2rem;
  }
  
  .service-tile {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-content {
    padding: 2rem 1rem !important;
  }
  
  .tagline-container {
    padding-left: 1rem;
  }
  
  .navbar-brand {
    font-size: 1.4rem;
  }
  
  .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Utility Classes */
.overflow-hidden {
  overflow: hidden !important;
}

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

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

.h-100 {
  height: 100% !important;
}

.w-100 {
  width: 100% !important;
}

.d-flex {
  display: flex !important;
}

.d-block {
  display: block !important;
}

.d-none {
  display: none !important;
}

.align-items-center {
  align-items: center !important;
}

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

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.text-center {
  text-align: center !important;
}

.text-end,
.text-md-end,
.text-lg-end {
  text-align: right !important;
}

.text-md-start {
  text-align: left !important;
}

@media (min-width: 768px) {
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--frost-white);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
  border-radius: 6px;
  border: 2px solid var(--frost-white);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-dark), var(--primary-color));
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  footer {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    color: black !important;
    text-decoration: underline;
  }
}