/* ===================================
   Architecture Studio - Professional Blue & Amber Theme
   Primary: #1565C0 | Secondary: #FFA726
   =================================== */

/* === ROOT VARIABLES === */
:root {
  --primary-color: #1565C0;
  --secondary-color: #FFA726;
  --dark-blue: #0D47A1;
  --light-blue: #42A5F5;
  --dark-amber: #F57C00;
  --light-amber: #FFB74D;
  --text-dark: #212529;
  --text-light: #6c757d;
  --bg-light: #F5F7FA;
  --white: #FFFFFF;
  --shadow: 0 4px 6px rgba(21, 101, 192, 0.1);
  --shadow-lg: 0 10px 30px rgba(21, 101, 192, 0.15);
}

/* === GLOBAL STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* === NAVBAR STYLES === */
.navbar {
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  background-color: var(--white) !important;
}

.navbar.sticky-top {
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

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

.navbar-light .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-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
  width: 80%;
}

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

.navbar-dark {
  background-color: var(--primary-color) !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--white) !important;
}

.navbar-dark .navbar-brand {
  color: var(--white) !important;
}

.navbar-toggler {
  border: 2px solid var(--primary-color) !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(21, 101, 192, 0.25);
}

/* === HERO SECTION === */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::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"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
  opacity: 0.3;
  animation: patternMove 20s linear infinite;
}

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

.hero-section .text-white {
  color: var(--white) !important;
  z-index: 2;
}

.hero-section .display-3 {
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

.hero-section .lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95) !important;
  animation: fadeInUp 1s ease;
}

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

/* === PARALLAX HEADER === */
.parallax-header {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.parallax-header .opacity-90 {
  background: rgba(21, 101, 192, 0.9);
}

/* === EXPERIENCE COUNTER === */
.experience-counter {
  background: linear-gradient(135deg, var(--secondary-color), var(--dark-amber));
  border-radius: 15px;
  animation: slideInLeft 0.8s ease;
  box-shadow: var(--shadow-lg);
}

.experience-counter .display-1 {
  font-weight: 800;
  color: var(--white) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.experience-counter .h4 {
  color: var(--white) !important;
  font-weight: 600;
}

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

/* === BUTTONS === */
.btn {
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
}

.btn-primary:hover {
  background-color: var(--dark-blue) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.4);
}

.btn-secondary {
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(255, 167, 38, 0.3);
}

.btn-secondary:hover {
  background-color: var(--dark-amber) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 167, 38, 0.4);
}

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

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

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

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

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

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

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

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

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

.btn-dark:hover {
  background-color: #000 !important;
}

.btn-lg {
  padding: 0.875rem 2rem !important;
  font-size: 1.1rem;
}

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

/* === TESTIMONIAL STYLES === */
.testimonial-container {
  padding: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
  animation: fadeIn 0.8s ease;
}

.testimonial-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card .rounded-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
}

.testimonial-card .bi-star-fill {
  color: var(--secondary-color) !important;
  font-size: 1.2rem;
}

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

/* === SERVICE CARD === */
.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

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

.service-card:hover .bi {
  color: var(--secondary-color) !important;
  transform: scale(1.1);
}

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

.service-check {
  margin-bottom: 0.5rem;
}

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

/* === TIMELINE === */
.timeline-container {
  position: relative;
  padding: 2rem;
}

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

.timeline-container .shadow-sm {
  box-shadow: var(--shadow) !important;
}

.timeline-container .badge {
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

/* === TEAM MEMBER CARD === */
.team-member-card {
  text-align: center;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-5px);
}

.hexagon-frame {
  width: 180px;
  height: 180px;
  position: relative;
  margin-bottom: 1.5rem;
}

.hexagon-clip {
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 4px;
  transition: all 0.3s ease;
}

.hexagon-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.team-member-card:hover .hexagon-clip {
  transform: rotate(360deg) scale(1.05);
}

.bio-overlay {
  background: rgba(21, 101, 192, 0.95);
  color: var(--white) !important;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.team-member-card:hover .bio-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* === VALUE BADGE CARD === */
.value-badge-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
}

.value-badge-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.value-badge-card:hover .icon-circle {
  background: linear-gradient(135deg, var(--secondary-color), var(--dark-amber));
  transform: rotate(360deg);
}

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

.value-content h6 {
  color: var(--primary-color) !important;
  font-weight: 700;
}

.expanded-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.expanded-content.show {
  max-height: 200px;
}

.expand-btn {
  color: var(--primary-color) !important;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.expand-btn:hover {
  color: var(--secondary-color) !important;
}

/* === CARD STYLES === */
.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.card-header {
  background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
  color: var(--white) !important;
  font-weight: 700;
  border: none;
}

.card-body {
  padding: 1.5rem;
}

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

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

/* === BLOG CARD === */
.blog-card {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

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

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

.blog-card .badge {
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
}

/* === FILTER BUTTONS === */
.filter-btn {
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--primary-color);
  color: var(--primary-color) !important;
  background: transparent;
  border-radius: 25px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color) !important;
  color: var(--white) !important;
}

/* === FORMS === */
.form-control,
.form-select {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(21, 101, 192, 0.25);
}

.form-control-lg {
  padding: 1rem 1.25rem;
  font-size: 1.1rem;
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

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

.form-check-label {
  color: var(--text-dark);
}

/* === FORM STEPS === */
.form-step {
  display: none;
}

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

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

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

.step-indicator .badge {
  flex: 1;
  padding: 0.75rem;
  background: #e0e0e0 !important;
  color: var(--text-dark) !important;
  margin: 0 0.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.step-indicator .badge.active {
  background: var(--primary-color) !important;
  color: var(--white) !important;
}

.step-indicator .badge.completed {
  background: var(--secondary-color) !important;
  color: var(--white) !important;
}

/* === ACCORDION === */
.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.accordion-button {
  background-color: var(--bg-light) !important;
  color: var(--primary-color) !important;
  font-weight: 700;
  border: none;
  padding: 1.25rem;
}

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

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

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(25%) sepia(98%) saturate(1731%) hue-rotate(198deg) brightness(91%) contrast(94%);
}

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

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

/* === ALERTS === */
.alert {
  border: none;
  border-radius: 10px;
  padding: 1rem 1.5rem;
}

.alert-info {
  background-color: rgba(21, 101, 192, 0.1) !important;
  color: var(--primary-color) !important;
  border-left: 4px solid var(--primary-color);
}

.alert-warning {
  background-color: rgba(255, 167, 38, 0.1) !important;
  color: var(--dark-amber) !important;
  border-left: 4px solid var(--secondary-color);
}

.alert-success {
  background-color: rgba(76, 175, 80, 0.1) !important;
  color: #2e7d32 !important;
  border-left: 4px solid #4caf50;
}

/* === TABLE === */
.table {
  border-radius: 10px;
  overflow: hidden;
}

.table thead {
  background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
  color: var(--white) !important;
}

.table thead th {
  color: var(--white) !important;
  font-weight: 700;
  border: none;
  padding: 1rem;
}

.table-bordered {
  border: 2px solid #e0e0e0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(21, 101, 192, 0.05);
}

.table-responsive {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* === MODAL === */
.modal-content {
  border-radius: 15px;
  border: none;
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
  color: var(--white) !important;
  border: none;
  padding: 1.5rem;
}

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

.modal-body {
  padding: 2rem;
}

.modal-footer {
  border: none;
  padding: 1.5rem;
}

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

/* === CAROUSEL === */
.carousel-item {
  height: 500px;
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
}

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

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

/* === BADGES === */
.badge {
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 20px;
}

.badge.bg-primary {
  background-color: var(--primary-color) !important;
}

.badge.bg-secondary {
  background-color: var(--secondary-color) !important;
}

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

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

.bi-person-fill,
.bi-star-fill,
.bi-calculator-fill,
.bi-file-earmark-text-fill,
.bi-journal-check,
.bi-lightbulb-fill,
.bi-clipboard-check-fill,
.bi-cloud-check-fill,
.bi-linkedin,
.bi-twitter,
.bi-facebook,
.bi-geo-alt-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-lightning-charge-fill,
.bi-shield-check,
.bi-chat-dots-fill,
.bi-graph-up-arrow,
.bi-gear-fill,
.bi-people-fill,
.bi-clock {
  transition: all 0.3s ease;
}

/* === ANIMATED ENVELOPE === */
.animated-envelope {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* === SHADOWS === */
.shadow {
  box-shadow: var(--shadow) !important;
}

.shadow-sm {
  box-shadow: 0 2px 4px rgba(21, 101, 192, 0.08) !important;
}

.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

/* === BACKGROUNDS === */
.bg-primary {
  background-color: var(--primary-color) !important;
}

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

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

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

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

/* === TEXT COLORS === */
.text-primary {
  color: var(--primary-color) !important;
}

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

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

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

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

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

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* === POSITION UTILITIES === */
.position-fixed {
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.position-sticky {
  position: sticky;
  top: 80px;
}

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

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

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

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

/* === BORDERS === */
.border {
  border: 1px solid #dee2e6 !important;
}

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

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

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

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

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

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

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

/* === FOOTER === */
footer {
  background: linear-gradient(135deg, var(--text-dark), #1a1a1a);
  color: var(--white) !important;
}

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

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

footer .bi {
  margin-right: 0.5rem;
}

footer .border-secondary {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* === OPACITY === */
.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-90 {
  opacity: 0.9 !important;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 10px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-blue);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: var(--shadow);
  }
  
  .navbar-light .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
  }
  
  .hero-section {
    min-height: auto;
    padding: 4rem 0;
  }
  
  .hero-section .display-3 {
    font-size: 2.5rem;
  }
  
  .experience-counter {
    margin-top: 2rem;
  }
  
  .timeline-container::before {
    left: 30px;
  }
  
  .hexagon-frame {
    width: 150px;
    height: 150px;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .display-1 {
    font-size: 3rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 1.75rem !important;
  }
  
  .display-5 {
    font-size: 1.5rem !important;
  }
  
  .display-6 {
    font-size: 1.25rem !important;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem;
  }
  
  .testimonial-container {
    padding: 1rem;
  }
  
  .carousel-item {
    height: 300px;
  }
  
  .position-fixed {
    bottom: 10px;
    right: 10px;
  }
  
  .modal-body {
    padding: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section .lead {
    font-size: 1rem;
  }
  
  .experience-counter .display-1 {
    font-size: 3rem !important;
  }
  
  .px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .service-card,
  .value-badge-card,
  .team-member-card {
    margin-bottom: 1rem;
  }
}

/* === PRINT STYLES === */
@media print {
  .navbar,
  .btn,
  .position-fixed,
  footer {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .card,
  .service-card,
  .value-badge-card {
    box-shadow: none;
    border: 1px solid #000;
  }
}

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

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

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

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

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

/* === LOADING SPINNER === */
.spinner-border {
  width: 3rem;
  height: 3rem;
  border-width: 0.3em;
}

.spinner-border-primary {
  border-color: var(--primary-color);
  border-right-color: transparent;
}

/* === HOVER EFFECTS === */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.hover-scale {
  transition: transform 0.3s ease;
}

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

/* === GRADIENT BACKGROUNDS === */
.gradient-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--light-blue)) !important;
}

.gradient-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--dark-amber)) !important;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === ADDITIONAL UTILITY CLASSES === */
.cursor-pointer {
  cursor: pointer;
}

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

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

.list-unstyled {
  list-style: none;
  padding-left: 0;
}

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

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

.g-0 {
  gap: 0 !important;
}

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

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

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

/* === FOCUS STATES === */
*:focus {
  outline: none;
}

.btn:focus,
.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(21, 101, 192, 0.25);
}

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

/* === DARK MODE SUPPORT (Optional) === */
@media (prefers-color-scheme: dark) {
  /* Uncomment if dark mode is needed
  body {
    background-color: #1a1a1a;
    color: #f5f5f5;
  }
  */
}