/* Arctic Professional Architecture Studio Theme */

:root {
  --primary-color: #1E3A5F;
  --secondary-color: #4A90E2;
  --light-bg: #F8FBFF;
  --dark-text: #1A1A1A;
  --arctic-white: #FFFFFF;
  --ice-blue: #E8F4FF;
  --frost-gray: #B8D4E8;
  --shadow-color: rgba(30, 58, 95, 0.15);
  --transition-speed: 0.3s;
}

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

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

/* Typography */
.display-3,
.display-4,
.display-5,
.display-6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary-color) !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95) !important;
}

.fs-3,
.fs-4,
.fs-5 {
  font-weight: 600;
}

/* Navbar */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2A4A70 100%) !important;
  padding: 1rem 0;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all var(--transition-speed) ease;
}

.navbar.sticky-top {
  background: rgba(30, 58, 95, 0.98) !important;
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--arctic-white) !important;
  font-weight: 700 !important;
  transition: transform var(--transition-speed) ease;
}

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

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 8px;
  transition: all var(--transition-speed) ease;
  position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  background-color: rgba(74, 144, 226, 0.2) !important;
  color: var(--arctic-white) !important;
  transform: translateY(-2px);
}

.navbar-dark .navbar-nav .nav-link.active {
  background-color: var(--secondary-color) !important;
  font-weight: 600;
}

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

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(74, 144, 226, 0.25) !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%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1E3A5F 0%, #2A5080 50%, #4A90E2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero-section .text-white {
  color: var(--arctic-white) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-section .display-3 {
  color: var(--arctic-white) !important;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  animation: fadeInUp 1s ease-out;
}

.hero-section .lead {
  animation: fadeInUp 1.2s ease-out;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Buttons */
.btn {
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-speed) ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

.btn-outline-primary:hover {
  background-color: var(--primary-color) !important;
  color: var(--arctic-white) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-color) !important;
}

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

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

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

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

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

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

.animate-bounce {
  animation: bounce 2s infinite;
}

.bi-chevron-down {
  color: var(--arctic-white) !important;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.bi-chevron-down:hover {
  color: var(--secondary-color) !important;
  transform: scale(1.2);
}

/* Cards */
.card {
  border-radius: 16px;
  transition: all var(--transition-speed) ease;
  background-color: var(--arctic-white);
  overflow: hidden;
}

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

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

.card.shadow-sm {
  box-shadow: 0 4px 15px var(--shadow-color) !important;
}

.card.shadow {
  box-shadow: 0 8px 25px var(--shadow-color) !important;
}

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

.hover-lift {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(30, 58, 95, 0.25) !important;
}

.card-body {
  padding: 2rem;
}

.card-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--arctic-white) !important;
  border: none;
  padding: 1.5rem;
  font-weight: 600;
}

.card-footer {
  background-color: var(--light-bg);
  border-top: 1px solid rgba(30, 58, 95, 0.1);
  padding: 1.25rem;
}

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

/* Icons */
.bi {
  vertical-align: middle;
}

.bi-shield-fill-check,
.bi-snow2,
.bi-snow,
.bi-snow3,
.bi-check-circle-fill,
.bi-lightning-charge-fill,
.bi-battery-charging,
.bi-disc-fill,
.bi-calendar-check-fill,
.bi-star-fill,
.bi-patch-check-fill {
  color: var(--secondary-color) !important;
}

.bi-telephone-fill,
.bi-envelope-fill,
.bi-geo-alt-fill,
.bi-clock-history,
.bi-clock-fill,
.bi-chat-dots-fill {
  color: var(--primary-color) !important;
}

/* Sections */
.py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

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

.p-5 {
  padding: 3rem !important;
}

.p-4 {
  padding: 2rem !important;
}

.p-3 {
  padding: 1.5rem !important;
}

/* Background Colors */
.bg-light {
  background-color: var(--light-bg) !important;
}

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

.bg-opacity-10 {
  opacity: 0.1;
}

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

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

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

.rounded-pill {
  border-radius: 50rem !important;
}

/* Badges */
.badge {
  font-weight: 600;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

.badge.rounded-pill {
  background: linear-gradient(135deg, var(--secondary-color), #5BA3F5);
  color: var(--arctic-white) !important;
}

/* Borders */
.border-0 {
  border: none !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-start {
  border-left: 3px solid var(--secondary-color) !important;
}

.border-bottom {
  border-bottom: 1px solid rgba(30, 58, 95, 0.1) !important;
}

/* Forms */
.form-control,
.form-control-lg,
.form-select,
.form-select-lg {
  border-radius: 12px;
  border: 2px solid rgba(30, 58, 95, 0.2);
  padding: 0.875rem 1.25rem;
  transition: all var(--transition-speed) ease;
  background-color: var(--arctic-white);
  color: var(--dark-text) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(74, 144, 226, 0.25) !important;
  background-color: var(--arctic-white) !important;
}

.form-control-lg,
.form-select-lg {
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
}

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

.form-check-input {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid rgba(30, 58, 95, 0.3);
  transition: all var(--transition-speed) ease;
}

.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(74, 144, 226, 0.25) !important;
}

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

/* Accordion */
.accordion {
  border-radius: 12px;
  overflow: hidden;
}

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

.accordion-button {
  background-color: var(--light-bg) !important;
  color: var(--primary-color) !important;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border: none;
  transition: all var(--transition-speed) ease;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
  color: var(--arctic-white) !important;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(74, 144, 226, 0.25) !important;
}

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

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

.accordion-body {
  padding: 1.5rem;
  background-color: var(--arctic-white);
  color: var(--dark-text);
}

.accordion-collapse {
  border: none;
}

/* Alerts */
.alert {
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  border: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.alert-info {
  background: linear-gradient(135deg, #E8F4FF, #D0E9FF);
  color: var(--primary-color) !important;
}

.alert .bi {
  font-size: 1.5rem;
}

/* Text Colors */
.text-white {
  color: var(--arctic-white) !important;
}

.text-muted {
  color: rgba(30, 58, 95, 0.6) !important;
}

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

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

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

/* Font Weights */
.fw-bold {
  font-weight: 700 !important;
}

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

/* List Styles */
.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.list-unstyled li {
  padding: 0.5rem 0;
  transition: all var(--transition-speed) ease;
}

.list-unstyled li:hover {
  padding-left: 0.5rem;
  color: var(--secondary-color) !important;
}

/* Utilities */
.d-flex {
  display: flex !important;
}

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

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

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

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

.flex-column {
  flex-direction: column !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;
}

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

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

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

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

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

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

.gap-4 {
  gap: 1.5rem !important;
}

.g-3 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.g-5 {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-lg-0 {
  margin-bottom: 0 !important;
}

.mb-md-0 {
  margin-bottom: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-md-0 {
  margin-top: 0 !important;
}

.mt-auto {
  margin-top: auto !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-lg-4 {
  padding-left: 1.5rem !important;
}

.ps-lg-5 {
  padding-left: 3rem !important;
}

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

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.p-0 {
  padding: 0 !important;
}

/* Position */
.position-relative {
  position: relative !important;
}

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

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

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

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

.bottom-0 {
  bottom: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

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

/* Opacity */
.opacity-25 {
  opacity: 0.25 !important;
}

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

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container-fluid {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

/* Responsive Typography */
@media (max-width: 991.98px) {
  .display-3 {
    font-size: 3rem !important;
  }
  
  .display-4 {
    font-size: 2.5rem !important;
  }
  
  .display-5 {
    font-size: 2rem !important;
  }
  
  .display-6 {
    font-size: 1.75rem !important;
  }
  
  .fs-3 {
    font-size: 1.5rem !important;
  }
  
  .ps-lg-4,
  .ps-lg-5 {
    padding-left: 0 !important;
  }
  
  .text-lg-start,
  .text-lg-end {
    text-align: center !important;
  }
  
  .order-lg-1 {
    order: 1;
  }
  
  .order-lg-2 {
    order: 2;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 100px 0 60px;
    min-height: 80vh;
  }
  
  .display-3 {
    font-size: 2.5rem !important;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 1rem;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .mt-md-0 {
    margin-top: 0 !important;
  }
  
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  
  .text-md-start,
  .text-md-end {
    text-align: center !important;
  }
  
  .col-md-4,
  .col-md-6,
  .col-md-8 {
    margin-bottom: 1.5rem;
  }
}

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

/* Selection */
::selection {
  background-color: var(--secondary-color);
  color: var(--arctic-white);
}

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

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

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 6px;
}

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

/* Loading Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Hover Effects */
.nav-item:hover .nav-link {
  color: var(--arctic-white) !important;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

a:hover {
  color: var(--primary-color);
}

/* Focus Styles */
*:focus {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  .navbar-toggler {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}

/* Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Custom Shadow Effects */
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem var(--shadow-color) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem var(--shadow-color) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem var(--shadow-color) !important;
}

/* Transitions for All Interactive Elements */
button,
input,
select,
textarea,
a,
.card,
.btn {
  transition: all var(--transition-speed) ease;
}

/* Arctic Theme Specific Elements */
.bi-snow,
.bi-snow2,
.bi-snow3 {
  animation: float 3s ease-in-out infinite;
}

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

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2A4A70 100%);
  color: var(--arctic-white) !important;
}

footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: all var(--transition-speed) ease;
}

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

/* Quote Styles */
.bi-quote {
  font-size: 3rem;
  opacity: 0.3;
  color: var(--secondary-color) !important;
}

.fst-italic {
  font-style: italic !important;
}

/* Star Rating */
.bi-star-fill {
  color: #FFD700 !important;
  font-size: 1.25rem;
}

/* Small Text */
.small {
  font-size: 0.875rem;
  color: rgba(30, 58, 95, 0.7);
}

/* Hero Animation Enhancement */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-section > * {
  animation: fadeIn 1.5s ease-out;
}

/* Responsive Grid Adjustments */
@media (min-width: 992px) {
  .col-lg-2 { width: 16.666667%; }
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333333%; }
  .col-lg-5 { width: 41.666667%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333333%; }
  .col-lg-8 { width: 66.666667%; }
  .col-lg-9 { width: 75%; }
  .col-lg-10 { width: 83.333333%; }
  .col-lg-12 { width: 100%; }
}

@media (min-width: 768px) {
  .col-md-4 { width: 33.333333%; }
  .col-md-6 { width: 50%; }
  .col-md-8 { width: 66.666667%; }
}

.col-6 {
  width: 50%;
}

.col-12 {
  width: 100%;
}

/* Additional Professional Touches */
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.h3, .h4, .h5 {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Nav Pills for Navigation */
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* Enhanced Card Interaction */
.card:hover {
  border-color: var(--secondary-color) !important;
}

/* Professional Form Styling */
input.form-control::placeholder,
textarea.form-control::placeholder {
  color: rgba(30, 58, 95, 0.5);
  font-style: italic;
}