/* Arctic Professional Architecture Studio Theme */

:root {
  --primary-color: #1E3A5F;
  --secondary-color: #4FC3F7;
  --light-blue: #E3F2FD;
  --ice-white: #F8FBFF;
  --dark-text: #1A1A1A;
  --light-text: #666666;
  --arctic-gradient: linear-gradient(135deg, #1E3A5F 0%, #2C5F8D 100%);
  --ice-gradient: linear-gradient(180deg, rgba(79, 195, 247, 0.1) 0%, rgba(30, 58, 95, 0.05) 100%);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark-text);
  background-color: var(--ice-white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.display-3, .display-4, .display-5, .display-6 {
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

/* Navigation */
.navbar {
  background: rgba(30, 58, 95, 0.95) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
}

.navbar.sticky-top {
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navbar-brand {
  font-size: 1.5rem !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
  color: var(--secondary-color) !important;
}

.navbar-brand .bi {
  color: var(--secondary-color) !important;
  margin-right: 0.5rem;
  font-size: 1.8rem;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500 !important;
  padding: 0.5rem 1.2rem !important;
  margin: 0 0.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: #FFFFFF !important;
  background: rgba(79, 195, 247, 0.15) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
  color: #FFFFFF !important;
  background: var(--secondary-color) !important;
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.4);
}

.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
  padding: 0.5rem 0.75rem !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(79, 195, 247, 0.5) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--arctic-gradient);
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,100 Q300,150 600,100 T1200,100 L1200,600 L0,600 Z" fill="rgba(79,195,247,0.1)"/><path d="M0,200 Q300,250 600,200 T1200,200 L1200,600 L0,600 Z" fill="rgba(79,195,247,0.05)"/></svg>');
  background-size: cover;
  background-position: bottom;
  opacity: 0.3;
}

.hero-section .position-absolute {
  background: radial-gradient(circle at 30% 50%, rgba(79, 195, 247, 0.2) 0%, transparent 50%);
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.hero-section .text-white {
  color: #FFFFFF !important;
  z-index: 2;
  position: relative;
}

.hero-section .display-3 {
  color: #FFFFFF !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease;
}

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

/* Frosted Glass Card */
.frosted-glass-card {
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  animation: fadeInRight 1.4s ease;
}

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

.counter-item {
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.counter-item:hover {
  transform: scale(1.05);
}

.counter-item .display-4 {
  color: var(--secondary-color) !important;
  font-weight: 800 !important;
  text-shadow: 0 2px 10px rgba(79, 195, 247, 0.3);
}

.counter-item small {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Floating CTA Card */
.floating-cta-card {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  animation: floatIn 0.8s ease, float 3s ease-in-out infinite;
  max-width: 320px;
}

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

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

.floating-cta-card .card {
  background: #FFFFFF !important;
  border: none !important;
  box-shadow: 0 10px 40px rgba(30, 58, 95, 0.2) !important;
}

.floating-cta-card .card-body {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--light-blue) 100%);
}

/* Buttons */
.btn {
  font-weight: 600 !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none !important;
}

.btn-light {
  background: #FFFFFF !important;
  color: var(--primary-color) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  background: var(--secondary-color) !important;
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(79, 195, 247, 0.4) !important;
}

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

.btn-sm {
  padding: 0.5rem 1rem !important;
  font-size: 0.85rem !important;
}

.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: #FFFFFF !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: #FFFFFF !important;
}

/* Diagonal Split Section */
.diagonal-split-section {
  background: #FFFFFF;
  position: relative;
  padding: 100px 0;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  margin: 80px 0;
}

.diagonal-split-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ice-gradient);
  opacity: 0.5;
}

.badge {
  background: var(--secondary-color) !important;
  color: #FFFFFF !important;
  font-weight: 600 !important;
  border-radius: 20px !important;
  font-size: 0.85rem !important;
}

/* Services Grid */
.services-grid-section {
  padding: 80px 0;
  background: var(--ice-white);
}

.service-card {
  background: #FFFFFF !important;
  border-radius: 15px !important;
  padding: 2.5rem !important;
  transition: all 0.4s ease !important;
  border: 1px solid rgba(30, 58, 95, 0.08) !important;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(30, 58, 95, 0.15) !important;
  border-color: var(--secondary-color) !important;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--ice-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--secondary-color);
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(79, 195, 247, 0.4);
}

.service-icon .bi {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.service-card:hover .service-icon .bi {
  color: #FFFFFF;
}

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

.service-card p {
  color: var(--light-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
  background: var(--arctic-gradient);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: #FFFFFF !important;
  font-weight: 800;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: var(--primary-color);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
}

footer h5 {
  color: #FFFFFF !important;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

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

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

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

/* Timeline */
.timeline-rail {
  background: linear-gradient(180deg, var(--light-blue) 0%, #FFFFFF 100%);
  padding: 80px 0;
}

.timeline-container {
  position: relative;
}

.timeline-item {
  position: relative;
  padding: 40px 0;
}

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

.timeline-dot {
  width: 30px;
  height: 30px;
  background: var(--secondary-color);
  border: 5px solid #FFFFFF;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(79, 195, 247, 0.5);
  z-index: 2;
}

.parallax-milestone {
  transition: transform 0.3s ease;
}

.timeline-content-section {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
}

.timeline-content-section:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.15);
}

/* Stats */
.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: #FFFFFF;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(30, 58, 95, 0.1);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  border-color: var(--secondary-color);
}

.stat-item .display-4 {
  color: var(--primary-color) !important;
  font-weight: 800;
}

/* Honeycomb */
.honeycomb-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 0;
}

.hexagon-wrapper {
  width: 200px;
  height: 230px;
  margin: 10px;
  position: relative;
}

.hexagon {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(30, 58, 95, 0.1);
}

.hexagon:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(79, 195, 247, 0.4);
}

.hexagon-overlay {
  text-align: center;
  padding: 20px;
}

.hexagon:hover .hexagon-overlay h5 {
  color: #FFFFFF !important;
}

.hexagon:hover .hexagon-overlay .bi {
  color: #FFFFFF !important;
}

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

.modal-header {
  background: var(--arctic-gradient) !important;
  color: #FFFFFF !important;
  border: none !important;
  padding: 2rem !important;
}

.modal-title {
  color: #FFFFFF !important;
  font-weight: 700;
}

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

.modal-body {
  padding: 2.5rem !important;
}

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

.form-control:focus, .form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(79, 195, 247, 0.25) !important;
  background: #FFFFFF !important;
}

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

.form-check-input {
  border: 2px solid rgba(30, 58, 95, 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-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.step-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.step-indicator .bi {
  font-size: 2rem;
  color: rgba(30, 58, 95, 0.3);
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.step-indicator .bi.active {
  color: var(--secondary-color);
  transform: scale(1.2);
}

/* Accordion */
.accordion-item {
  border: 1px solid rgba(30, 58, 95, 0.1) !important;
  margin-bottom: 1rem !important;
  border-radius: 10px !important;
  overflow: hidden;
}

.accordion-button {
  background: #FFFFFF !important;
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  padding: 1.25rem 1.5rem !important;
  border: none !important;
}

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

.accordion-button:focus {
  box-shadow: none !important;
  border: none !important;
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(21%) sepia(47%) saturate(1279%) hue-rotate(182deg) brightness(91%) contrast(91%);
}

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

/* Alerts */
.alert {
  border: none !important;
  border-radius: 12px !important;
  padding: 1.25rem 1.5rem !important;
}

.alert-info {
  background: var(--light-blue) !important;
  color: var(--primary-color) !important;
}

.alert-warning {
  background: #FFF4E5 !important;
  color: #E65100 !important;
}

.alert-heading {
  font-weight: 700 !important;
  margin-bottom: 0.5rem !important;
}

/* Tables */
.table {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
}

.table thead {
  background: var(--primary-color) !important;
  color: #FFFFFF !important;
}

.table thead th {
  border: none !important;
  padding: 1rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.table tbody tr {
  transition: all 0.3s ease;
}

.table-hover tbody tr:hover {
  background: var(--light-blue) !important;
  transform: scale(1.01);
}

.table tbody td {
  padding: 1rem !important;
  vertical-align: middle;
  border-color: rgba(30, 58, 95, 0.1) !important;
}

.table-striped tbody tr:nth-of-type(odd) {
  background: rgba(30, 58, 95, 0.02) !important;
}

.table-active {
  background: var(--light-blue) !important;
}

/* Nav Pills */
.nav-pills .nav-link {
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
  background: transparent !important;
}

.nav-pills .nav-link:hover {
  background: var(--light-blue) !important;
  transform: translateX(5px);
}

.nav-pills .nav-link.active {
  background: var(--secondary-color) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.4);
}

/* Tab Content */
.tab-content {
  padding: 2rem;
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(30, 58, 95, 0.08);
}

.tab-pane {
  animation: fadeIn 0.5s ease;
}

/* Cards */
.card {
  border: 1px solid rgba(30, 58, 95, 0.1) !important;
  border-radius: 15px !important;
  transition: all 0.3s ease !important;
  overflow: hidden;
}

.card:hover {
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15) !important;
  transform: translateY(-5px);
}

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

.card-text {
  color: var(--light-text);
  line-height: 1.7;
}

/* Carousel */
.carousel-inner {
  border-radius: 15px;
  overflow: hidden;
}

.carousel-item {
  transition: transform 0.8s ease-in-out;
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px !important;
  height: 60px !important;
  background: rgba(30, 58, 95, 0.8) !important;
  border-radius: 50% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  opacity: 0.8 !important;
  transition: all 0.3s ease !important;
}

.carousel-control-prev {
  left: 20px !important;
}

.carousel-control-next {
  right: 20px !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1 !important;
  background: var(--secondary-color) !important;
}

/* Progress */
.progress-step {
  position: relative;
  text-align: center;
}

.progress-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--light-blue);
  border: 3px solid var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.progress-step.active .progress-circle {
  background: var(--secondary-color);
  color: #FFFFFF;
  transform: scale(1.2);
  box-shadow: 0 5px 20px rgba(79, 195, 247, 0.5);
}

.progress-line {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: rgba(30, 58, 95, 0.2);
  z-index: -1;
}

.progress-step.active .progress-line {
  background: var(--secondary-color);
}

/* Calculator */
.calculator-step {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(30, 58, 95, 0.08);
  margin-bottom: 2rem;
}

.input-group {
  border-radius: 10px !important;
  overflow: hidden;
}

.input-group-text {
  background: var(--light-blue) !important;
  border: 2px solid rgba(30, 58, 95, 0.1) !important;
  color: var(--primary-color) !important;
  font-weight: 600 !important;
}

/* Utilities */
.bg-light {
  background: var(--ice-white) !important;
}

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

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

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

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

.shadow-sm {
  box-shadow: 0 2px 10px rgba(30, 58, 95, 0.05) !important;
}

.shadow-lg {
  box-shadow: 0 20px 60px rgba(30, 58, 95, 0.15) !important;
}

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

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding: 1rem 0;
    background: rgba(30, 58, 95, 0.98);
    border-radius: 10px;
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    margin: 0.3rem 0;
  }
  
  .hero-section {
    padding: 80px 0 60px;
    min-height: auto;
  }
  
  .hero-section .display-3 {
    font-size: 2.5rem !important;
  }
  
  .floating-cta-card {
    bottom: 15px;
    right: 15px;
    max-width: 280px;
  }
  
  .diagonal-split-section {
    clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
    margin: 40px 0;
    padding: 60px 0;
  }
  
  .timeline-item::before {
    left: 20px;
  }
  
  .timeline-dot {
    left: 20px;
  }
  
  .hexagon-wrapper {
    width: 150px;
    height: 173px;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 1.75rem !important;
  }
  
  .display-5 {
    font-size: 1.5rem !important;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
  }
  
  .floating-cta-card {
    position: static;
    margin: 2rem auto;
    max-width: 100%;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon .bi {
    font-size: 2rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px !important;
    height: 40px !important;
  }
  
  .modal-body {
    padding: 1.5rem !important;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.25rem !important;
  }
  
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .frosted-glass-card {
    padding: 2rem !important;
  }
  
  .counter-item {
    padding: 1rem;
  }
  
  .stat-item {
    padding: 1.5rem 0.5rem;
  }
  
  .hexagon-wrapper {
    width: 120px;
    height: 138px;
    margin: 5px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .floating-cta-card,
  .btn,
  footer {
    display: none !important;
  }
  
  body {
    background: #FFFFFF;
  }
  
  .hero-section {
    background: #FFFFFF;
    color: #000000;
  }
}

/* Accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus,
.nav-link:focus {
  outline: 3px solid var(--secondary-color) !important;
  outline-offset: 2px !important;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: var(--secondary-color);
  color: #FFFFFF;
}

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

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

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

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

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