/* ==========================================================================
   CRS Real Alliance - Component Styling
   --------------------------------------------------------------------------
   TABLE OF CONTENTS:
   1. HEADER & GLASS NAVBAR (SCROLLED STATE EFFECTS)
   2. MEGA MENU DROPDOWN (LAYOUT & SUBMENUS)
   3. PREMIUM BRANDED BUTTONS (ACCENT & OUTLINE CARDS)
   4. CRS CUSTOM CARD LAYOUTS (PROPERTIES & INSIGHTS IMAGES & BADGES)
   5. DARK FOOTER WRAPPER & SOCIAL LINK BUTTONS
   6. CUSTOM ACCORDION ENVELOPE (INTERACTIVE FAQS)
   7. STATISTICS DISPLAY COUNTERS
   8. BACK TO TOP BUTTON TRIGGERS
   ========================================================================== */

/* 1. HEADER & GLASS NAVBAR */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: transparent;
  transition: var(--crs-transition-smooth);
  border-bottom: 1px solid transparent;
}

header.navbar-scrolled {
  background: var(--crs-navy-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--crs-shadow-glass);
  padding: 8px 0 !important;
}

.logo-wrapper {
  gap: 12px;
}

.logo-accent-line {
  display: inline-block;
  width: 4px;
  height: 38px;
  background-color: var(--crs-accent);
  border-radius: 2px;
}

.logo-main-text {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  color: var(--crs-white);
  letter-spacing: -0.01em;
}

.logo-sub-alliance {
  font-weight: 400;
  color: var(--crs-accent);
}

.logo-desc-text {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.navbar-nav .nav-link {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px !important;
  transition: var(--crs-transition);
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--crs-accent);
  transform: scaleX(0);
  transition: var(--crs-transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active-link::after {
  transform: scaleX(1);
}

/* 2. MEGA MENU DROPDOWN */
.mega-menu-item {
  position: static !important;
}

.mega-menu-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--crs-navy-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 2px solid var(--crs-accent) !important;
  border-radius: 0 0 var(--crs-radius) var(--crs-radius) !important;
  opacity: 0;
  visibility: hidden;
  display: block;
  transform: translateY(10px);
  transition: var(--crs-transition);
}

.mega-menu-item:hover .mega-menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-banner {
  min-height: 180px;
}

.mega-menu-dropdown .dropdown-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--crs-radius-sm);
  transition: var(--crs-transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-menu-dropdown .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--crs-accent);
  padding-left: 20px;
}

/* 3. PREMIUM BRANDED BUTTONS */
.btn-accent {
  background-color: var(--crs-accent);
  color: var(--crs-primary) !important;
  border: 1px solid var(--crs-accent);
  border-radius: var(--crs-radius-sm);
  font-family: var(--font-headings);
  font-weight: 700;
  transition: var(--crs-transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-accent:hover {
  background-color: var(--crs-accent-hover);
  border-color: var(--crs-accent-hover);
  box-shadow: 0 8px 20px rgba(199, 160, 76, 0.3);
  transform: translateY(-2px);
}

.btn-outline-crs {
  background: transparent;
  color: var(--crs-primary) !important;
  border: 2px solid var(--crs-primary);
  border-radius: var(--crs-radius-sm);
  font-family: var(--font-headings);
  font-weight: 700;
  transition: var(--crs-transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-crs:hover {
  background-color: var(--crs-primary);
  color: var(--crs-white) !important;
  transform: translateY(-2px);
}

/* 4. CRS CUSTOM CARD LAYOUTS */
.crs-card {
  background: var(--crs-white);
  border-radius: var(--crs-radius);
  border: 1px solid var(--crs-light-grey);
  box-shadow: var(--crs-shadow-sm);
  transition: var(--crs-transition-smooth);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.crs-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--crs-shadow-lg);
  border-color: rgba(199, 160, 76, 0.2);
}

.crs-card-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.crs-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--crs-transition-smooth);
}

.crs-card:hover .crs-card-img {
  transform: scale(1.08);
}

.crs-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--crs-primary);
  color: var(--crs-white);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.crs-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.crs-card-meta {
  font-size: 14px;
  color: var(--crs-muted);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.crs-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: var(--crs-transition);
}

.crs-card:hover .crs-card-title {
  color: var(--crs-accent);
}

.crs-card-text {
  font-size: 15px;
  color: var(--crs-muted);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--crs-accent);
  opacity: .5;
  animation: floatParticle var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: .5;
  }
  50% {
    transform: translateY(-60px) translateX(20px);
    opacity: .15;
  }
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--crs-accent);
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--crs-accent);
  margin: 18px auto 0;
  border-radius: 999px;
}

.blog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.blog-tab-btn {
  padding: 10px 24px;
  border-radius: 30px;
  border: 1.5px solid var(--crs-light-grey);
  background: var(--crs-white);
  color: var(--crs-primary);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: var(--crs-transition);
  cursor: pointer;
}

.blog-tab-btn:hover {
  border-color: var(--crs-accent);
  color: var(--crs-accent);
}

.blog-tab-btn.active {
  background: var(--crs-primary);
  border-color: var(--crs-primary);
  color: var(--crs-white);
}

.sidebar-widget {
  background: var(--crs-white);
  border: 1.5px solid var(--crs-light-grey);
  border-radius: var(--crs-radius);
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: var(--crs-shadow-sm);
}

.search-box {
  position: relative;
}

.search-input {
  width: 100%;
  height: 46px;
  border: 1.5px solid var(--crs-light-grey);
  border-radius: var(--crs-radius-sm);
  padding: 0 46px 0 16px;
  font-size: 14px;
  color: var(--crs-primary);
  background: var(--crs-bg);
  transition: var(--crs-transition);
  outline: none;
}

.search-input:focus {
  border-color: var(--crs-accent);
  background: var(--crs-white);
}

.search-btn {
  position: absolute;
  right: 2px;
  top: 2px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  color: var(--crs-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.recent-post-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: center;
  text-decoration: none;
}

.recent-post-item:last-child {
  margin-bottom: 0;
}

.recent-post-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.recent-post-title {
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 700;
  color: var(--crs-primary);
  line-height: 1.45;
  margin-bottom: 4px;
  transition: var(--crs-transition);
}

.recent-post-item:hover .recent-post-title {
  color: var(--crs-accent);
}

.recent-post-date {
  font-size: 11px;
  color: var(--crs-muted);
}

.blog-card {
  background: var(--crs-white);
  border-radius: var(--crs-radius);
  border: 1.5px solid var(--crs-light-grey);
  box-shadow: var(--crs-shadow-sm);
  overflow: hidden;
  transition: var(--crs-transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--crs-shadow-premium);
  border-color: rgba(199, 160, 76, .3);
}

.blog-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--crs-transition-smooth);
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.08);
}

.blog-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--crs-accent);
  letter-spacing: .1em;
  margin-bottom: 8px;
  display: block;
}

.blog-title {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: var(--crs-primary);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: var(--crs-transition);
}

.blog-card:hover .blog-title {
  color: var(--crs-accent);
}

.blog-excerpt {
  font-size: 13px;
  color: var(--crs-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.blog-meta {
  font-size: 11px;
  color: var(--crs-muted);
  padding-top: 12px;
  border-top: 1.5px solid var(--crs-light-grey);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newsletter-section {
  background: linear-gradient(135deg, var(--crs-primary) 0%, #163252 60%, #0d2540 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 160, 76, .08), transparent 60%);
  pointer-events: none;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 540px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-input {
  flex-grow: 1;
  height: 52px;
  border: 1.5px solid rgba(255, 255, 255, .15);
  border-radius: var(--crs-radius-sm);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  padding: 0 20px;
  font-size: 14px;
  outline: none;
  transition: var(--crs-transition);
}

.newsletter-input:focus {
  border-color: var(--crs-accent);
  background: rgba(255, 255, 255, .1);
}

.btn-newsletter {
  height: 52px;
  background: linear-gradient(135deg, var(--crs-accent), #e8ba58);
  color: var(--crs-primary) !important;
  border: none;
  border-radius: var(--crs-radius-sm);
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 0 30px;
  transition: var(--crs-transition);
  cursor: pointer;
}

.btn-newsletter:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(199, 160, 76, .3);
}

.crs-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--crs-radius-sm);
  background: var(--crs-white);
  border: 1.5px solid var(--crs-light-grey);
  color: var(--crs-primary);
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--crs-transition);
}

.page-btn:hover {
  border-color: var(--crs-accent);
  color: var(--crs-accent);
}

.page-btn.active {
  background: var(--crs-primary);
  border-color: var(--crs-primary);
  color: var(--crs-white);
}

.contact-info-card {
  background: var(--crs-white);
  border: 1.5px solid var(--crs-light-grey);
  border-radius: var(--crs-radius);
  padding: 30px;
  box-shadow: var(--crs-shadow-sm);
  transition: var(--crs-transition-smooth);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--crs-shadow-premium);
  border-color: rgba(199, 160, 76, .3);
}

.contact-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(199, 160, 76, .08);
  border: 1.5px solid rgba(199, 160, 76, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--crs-transition-smooth);
}

.contact-info-card:hover .contact-icon-wrap {
  background: linear-gradient(135deg, var(--crs-accent), var(--crs-accent-hover));
  border-color: var(--crs-accent);
}

.contact-info-card:hover .contact-icon-wrap i {
  color: var(--crs-primary) !important;
}

.contact-card-title {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: var(--crs-primary);
  margin-bottom: 8px;
}

.contact-card-desc {
  font-size: 14px;
  color: var(--crs-muted);
  line-height: 1.6;
}

.contact-map-frame {
  border-radius: var(--crs-radius);
  overflow: hidden;
  border: 1.5px solid var(--crs-light-grey);
  box-shadow: var(--crs-shadow-md);
  position: relative;
}

.contact-map-frame iframe {
  display: block;
  border: none;
  width: 100%;
  height: 380px;
}

.map-overlay-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--crs-white);
  border: 1.5px solid var(--crs-light-grey);
  border-radius: var(--crs-radius-sm);
  padding: 10px 18px;
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 700;
  color: var(--crs-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--crs-transition);
  text-decoration: none;
}

.map-overlay-btn:hover {
  background: var(--crs-accent);
  border-color: var(--crs-accent);
  color: var(--crs-primary);
}

.contact-form-panel {
  background: var(--crs-white);
  border: 1.5px solid var(--crs-light-grey);
  border-radius: var(--crs-radius);
  padding: 40px;
  box-shadow: var(--crs-shadow-md);
}

.contact-form-group {
  margin-bottom: 20px;
}

.contact-form-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--crs-primary);
  margin-bottom: 6px;
  display: block;
}

.contact-form-control {
  width: 100%;
  height: 48px;
  border: 1.5px solid var(--crs-light-grey);
  border-radius: var(--crs-radius-sm);
  padding: 0 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--crs-primary);
  background: var(--crs-bg);
  transition: var(--crs-transition);
  outline: none;
}

.contact-form-control:focus {
  border-color: var(--crs-accent);
  background: var(--crs-white);
  box-shadow: 0 0 0 3px rgba(199, 160, 76, .1);
}

textarea.contact-form-control {
  height: 110px;
  resize: vertical;
  padding: 12px 16px;
  line-height: 1.6;
}

.contact-form-submit {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, var(--crs-accent), #e8ba58);
  color: var(--crs-primary) !important;
  border: none;
  border-radius: var(--crs-radius-sm);
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: var(--crs-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(199, 160, 76, .4);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--crs-light-grey);
  font-size: 14px;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-label {
  font-weight: 700;
  color: var(--crs-muted);
}

.hours-val {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--crs-primary);
}

.faq-item {
  border: 1.5px solid var(--crs-light-grey);
  border-radius: var(--crs-radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  transition: var(--crs-transition);
}

.faq-item.open {
  border-color: var(--crs-accent);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  background: var(--crs-white);
}

.faq-q-text {
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 700;
  color: var(--crs-primary);
}

.faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(199, 160, 76, .08);
  border: 1px solid rgba(199, 160, 76, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--crs-transition);
}

.faq-item.open .faq-toggle {
  background: var(--crs-accent);
  border-color: var(--crs-accent);
  color: var(--crs-primary);
}

.faq-item.open .faq-toggle i {
  transform: rotate(45deg);
}

.faq-toggle i {
  transition: transform .3s ease;
  color: var(--crs-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.16, 1, .3, 1);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--crs-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* 5. DARK FOOTER WRAPPER */
.footer-dark {
  background-color: var(--crs-primary);
}

.footer-dark a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--crs-transition);
}

.footer-dark a:hover {
  color: var(--crs-accent) !important;
  padding-left: 4px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--crs-white) !important;
  transition: var(--crs-transition);
}

.social-link:hover {
  background-color: var(--crs-accent);
  color: var(--crs-primary) !important;
  transform: translateY(-3px);
}

.footer-bottom-links a {
  transition: var(--crs-transition);
}

.footer-bottom-links a:hover {
  color: var(--crs-white) !important;
}

/* 6. CUSTOM ACCORDION ENVELOPE */
.crs-accordion .accordion-item {
  border: 1px solid var(--crs-light-grey);
  border-radius: var(--crs-radius-sm) !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--crs-shadow-sm);
  transition: var(--crs-transition);
}

.crs-accordion .accordion-item:hover {
  border-color: rgba(199, 160, 76, 0.3);
}

.crs-accordion .accordion-button {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 600;
  color: var(--crs-primary);
  padding: 20px 24px;
  background-color: var(--crs-white);
  box-shadow: none;
}

.crs-accordion .accordion-button:not(.collapsed) {
  background-color: rgba(199, 160, 76, 0.04);
  color: var(--crs-primary);
  border-bottom: 1px solid var(--crs-light-grey);
}

.crs-accordion .accordion-button::after {
  display: none;
}

/* 7. STATISTICS DISPLAY COUNTERS */
.stat-box {
  text-align: center;
  padding: 30px;
  background: var(--crs-white);
  border-radius: var(--crs-radius);
  box-shadow: var(--crs-shadow-sm);
  border: 1px solid var(--crs-light-grey);
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 48px;
  font-weight: 800;
  color: var(--crs-primary);
  margin-bottom: 8px;
}

.stat-number span {
  color: var(--crs-accent);
}

.stat-label {
  font-size: 15px;
  text-transform: uppercase;
  color: var(--crs-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* 8. BACK TO TOP BUTTON TRIGGERS */
.crs-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--crs-transition);
  font-size: 24px;
  padding: 0;
  border: none;
}

.crs-back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.crs-back-to-top:hover {
  transform: translateY(-5px);
}

/* 9. Standalone Statistics Counter box */
.stat-box-alt {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: var(--crs-radius);
  transition: var(--crs-transition-smooth);
}
.stat-box-alt:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--crs-accent) !important;
  transform: translateY(-5px);
}

/* 10. Industry Vertical Specialty Card */
.industry-card {
  transition: var(--crs-transition-smooth);
  background-color: var(--crs-white);
  border: 1px solid var(--crs-light-grey);
}
.industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 160, 76, 0.2);
  box-shadow: var(--crs-shadow-md);
}
.industry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(199, 160, 76, 0.1);
}

/* 11. Premium Showcase Project Card */
.project-showcase-card {
  transition: var(--crs-transition-smooth);
  background-color: var(--crs-white);
}
.project-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--crs-shadow-lg);
  border-color: rgba(199, 160, 76, 0.2) !important;
}
.project-showcase-card img {
  transition: var(--crs-transition-smooth);
}
.project-showcase-card:hover img {
  transform: scale(1.05);
}

/* 12. Swiper Testimonials Slider styling */
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  height: auto !important; /* Force equal cards heights */
}
.swiper-pagination {
  position: relative !important;
  margin-top: 30px;
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  transition: var(--crs-transition);
}
.swiper-pagination-bullet-active {
  background-color: var(--crs-accent) !important;
  width: 28px !important;
  border-radius: 5px !important;
}
.testimonial-card {
  border: 1px solid var(--crs-light-grey) !important;
  background: var(--crs-white) !important;
  box-shadow: var(--crs-shadow-sm) !important;
  transition: var(--crs-transition-smooth) !important;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 150px;
  color: rgba(199, 160, 76, 0.06);
  font-family: 'Manrope', Georgia, serif;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--crs-shadow-premium) !important;
  border-color: rgba(199, 160, 76, 0.3) !important;
}

/* 13. Visual Ratings & Floating Cards */
.rating-stars {
  color: var(--crs-accent);
  display: flex;
  gap: 4px;
}
.avatar-circle {
  background-color: var(--crs-accent) !important;
  color: var(--crs-primary) !important;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  border: 2px solid var(--crs-white);
  box-shadow: var(--crs-shadow-sm);
}
.hero-floating-stat {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--crs-radius-sm);
  box-shadow: var(--crs-shadow-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--crs-transition-smooth);
}
.hero-floating-stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--crs-shadow-premium);
  border-color: var(--crs-accent);
}

/* 14. Modern About collage */
.collage-container {
  position: relative;
  width: 100%;
}
.collage-main-img {
  border-radius: var(--crs-radius);
  box-shadow: var(--crs-shadow-md);
  width: 80%;
  height: auto;
  display: block;
  transition: var(--crs-transition-smooth);
}
.collage-main-img:hover {
  transform: scale(1.02);
}
.collage-overlap-img {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 45%;
  height: auto;
  border-radius: var(--crs-radius-sm);
  box-shadow: var(--crs-shadow-lg);
  border: 4px solid var(--crs-white);
  transition: var(--crs-transition-smooth);
}
.collage-overlap-img:hover {
  transform: translateY(-5px);
  box-shadow: var(--crs-shadow-premium);
}

/* 15. Enterprise Footer Columns styling */
.footer-dark h5 {
  position: relative;
  padding-bottom: 12px;
}
.footer-dark h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--crs-accent);
}
