/* ===================================================
   PARADE HOMES — Premium Glassmorphism Homepage
   Overrides & Enhancements
   Brand: #2F80ED (primary) | #2BB6C4 (secondary) | #8FD3F4 (accent)
   =================================================== */

/* ---- Glass Utility ---- */
.glass {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ===================================================
   HEADER — Glassy Frosted Bar
   =================================================== */
.site-header {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(24px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
  border-bottom: 1px solid rgba(47, 128, 237, 0.12) !important;
  box-shadow: 0 8px 32px rgba(11, 44, 74, 0.08), 0 2px 0 rgba(47, 128, 237, 0.08) !important;
}

/* ===================================================
   HERO — Cinematic Glass Overlay
   =================================================== */
.hero-premium {
  min-height: 90vh !important;
  position: relative;
}

/* Deep, multi-layer gradient overlay for cinematic depth */
.hero-overlay {
  background: linear-gradient(
    120deg,
    rgba(11, 44, 74, 0.97) 0%,
    rgba(15, 57, 96, 0.88) 40%,
    rgba(47, 128, 237, 0.35) 80%,
    rgba(43, 182, 196, 0.15) 100%
  ) !important;
}

/* ---- Hero glass content card ---- */
.hero-premium-content {
  max-width: 660px !important;
  padding: 6rem 0 7rem !important;
  position: relative;
}

/* Luminous vertical accent rule beside headline */
.hero-premium-content::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 40%;
  transform: translateY(-50%);
  width: 3px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #8FD3F4, transparent);
  border-radius: 2px;
}

/* ---- Hero Badge — glass pill ---- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.4rem !important;
  background: rgba(47, 128, 237, 0.18) !important;
  border: 1px solid rgba(143, 211, 244, 0.4) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  color: #8FD3F4 !important;
  font-size: 0.7rem !important;
  letter-spacing: 2.5px !important;
  border-radius: 0 !important;
  margin-bottom: 2rem !important;
  box-shadow: 0 0 24px rgba(47, 128, 237, 0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Pulsing badge dot stays from main styles */

/* ---- Hero Heading ---- */
.hero-premium h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem) !important;
  letter-spacing: -1.5px !important;
  line-height: 1.1 !important;
  color: #ffffff !important;
  text-shadow: 0 2px 32px rgba(11, 44, 74, 0.5);
}

.hero-premium h1 .hero-highlight {
  color: #8FD3F4 !important;
  position: relative;
  display: inline-block;
}

/* Underline shimmer on hero highlight word */
.hero-premium h1 .hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2BB6C4, #8FD3F4, #2F80ED);
  animation: shimmerLine 3s ease-in-out infinite;
  background-size: 200%;
}

@keyframes shimmerLine {
  0%   { background-position: 0% 50%; opacity: 0.5; }
  50%  { background-position: 100% 50%; opacity: 1; }
  100% { background-position: 0% 50%; opacity: 0.5; }
}

/* ---- Hero Paragraph ---- */
.hero-premium p {
  color: rgba(224, 234, 245, 0.92) !important;
  font-size: 1.1rem !important;
  line-height: 1.75 !important;
  max-width: 590px !important;
}

/* ---- Hero Buttons ---- */
.hero-actions .btn-primary {
  background: linear-gradient(135deg, #2F80ED, #2BB6C4) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(47, 128, 237, 0.45), inset 0 1px 0 rgba(255,255,255,0.2) !important;
  position: relative;
  overflow: hidden;
}

.hero-actions .btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 80%;
  height: 200%;
  background: rgba(255,255,255,0.12);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.hero-actions .btn-primary:hover::before { left: 140%; }

.hero-actions .btn-primary:hover {
  background: linear-gradient(135deg, #1E62C1, #1EA4B0) !important;
  box-shadow: 0 12px 32px rgba(47, 128, 237, 0.55) !important;
  transform: translateY(-2px);
}

.hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.hero-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(143, 211, 244, 0.5) !important;
  box-shadow: 0 8px 24px rgba(143, 211, 244, 0.15) !important;
  transform: translateY(-2px);
}

/* ===================================================
   TRUST STRIP — Frosted glass cards on dark bg
   =================================================== */
.trust-strip-premium {
  background: linear-gradient(135deg, #0B2C4A 0%, #0D3660 100%) !important;
  position: relative;
  overflow: hidden;
}

.trust-strip-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 128, 237, 0.6), rgba(43, 182, 196, 0.6), transparent);
}

.trust-strip-premium::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 128, 237, 0.3), transparent);
}

/* Subtle radial light in center */
.trust-strip-inner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(47, 128, 237, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.trust-strip-inner {
  position: relative;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-strip-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item-premium {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 3rem;
  position: relative;
  flex: 1;
  min-width: 160px;
}

/* Vertical dividers between trust items */
.trust-item-premium + .trust-item-premium::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(143, 211, 244, 0.25), transparent);
}

/* Glass bubble around icon */
.trust-icon {
  width: 56px !important;
  height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(47, 128, 237, 0.15) !important;
  border: 1px solid rgba(47, 128, 237, 0.3) !important;
  border-radius: 0 !important;
  margin-bottom: 1rem !important;
  color: #8FD3F4 !important;
  box-shadow: 0 0 20px rgba(47, 128, 237, 0.15), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.trust-icon svg {
  width: 24px !important;
  height: 24px !important;
  stroke: #8FD3F4 !important;
}

.trust-item-premium:hover .trust-icon {
  background: rgba(47, 128, 237, 0.25) !important;
  box-shadow: 0 0 32px rgba(47, 128, 237, 0.3) !important;
  transform: translateY(-3px);
}

.trust-item-premium .number {
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  display: block;
  letter-spacing: -1px;
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.trust-item-premium .label {
  font-size: 0.78rem !important;
  color: rgba(143, 211, 244, 0.8) !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ===================================================
   ABOUT SPLIT — Dark glass panel with accent border
   =================================================== */
.about-split {
  background: linear-gradient(160deg, #0B2C4A 0%, #071E35 100%) !important;
  position: relative;
  overflow: hidden;
}

/* Decorative radial glow */
.about-split::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(47, 128, 237, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Section badge */
.split-content .section-badge {
  color: #2BB6C4 !important;
  font-size: 0.72rem !important;
  letter-spacing: 3px !important;
}

/* Heading colour override for dark section */
.about-split .split-content h2 {
  color: #ffffff !important;
}

.about-split .split-content .lead-text {
  color: rgba(200, 220, 235, 0.85) !important;
}

/* Feature numbered list — glass cards */
.about-split .feature-item {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 1.25rem 1.5rem !important;
  border-radius: 0;
  backdrop-filter: blur(8px) !important;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.about-split .feature-item:hover {
  background: rgba(47, 128, 237, 0.08) !important;
  border-color: rgba(47, 128, 237, 0.25) !important;
}

.about-split .feature-number {
  background: linear-gradient(135deg, rgba(47, 128, 237, 0.25), rgba(43, 182, 196, 0.15)) !important;
  border: 1px solid rgba(47, 128, 237, 0.4) !important;
  color: #8FD3F4 !important;
  font-weight: 800 !important;
  box-shadow: 0 0 12px rgba(47, 128, 237, 0.2);
}

.about-split .feature-text h4 {
  color: #ffffff !important;
}

.about-split .feature-text p {
  color: rgba(176, 196, 204, 0.9) !important;
}

/* Image — glassy frame */
.about-split .split-image img {
  border: 1px solid rgba(47, 128, 237, 0.2) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.04) !important;
}

/* ===================================================
   PLACEMENT OFFER (SERVICE GRID) — Glass Cards
   =================================================== */
.placement-offer-premium {
  background: #f0f6ff !important;
  position: relative;
  padding-bottom: 5rem;
}

/* Glassy header */
.section-header-premium {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  padding-top: 5rem;
}

.section-header-premium .section-subtitle {
  color: #2F80ED !important;
}

.section-header-premium h2 {
  color: #0B2C4A !important;
}

.section-header-premium p {
  color: #4a6b8a !important;
}

/* Service Cards — elevated glass */
.service-card {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(47, 128, 237, 0.12) !important;
  box-shadow: 0 8px 32px rgba(11, 44, 74, 0.08), 0 2px 8px rgba(47, 128, 237, 0.05) !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease !important;
  overflow: hidden;
  position: relative;
}

/* Top accent stripe on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2F80ED, #2BB6C4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 48px rgba(11, 44, 74, 0.14), 0 0 0 1px rgba(47, 128, 237, 0.2) !important;
  border-color: rgba(47, 128, 237, 0.25) !important;
}

.service-card-image img {
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.04);
}

.service-card-content {
  padding: 1.5rem !important;
}

.service-card-content h3 {
  color: #0B2C4A !important;
  font-size: 1.15rem !important;
}

.service-card-content p {
  color: #4a6b8a !important;
  font-size: 0.9rem !important;
}

.service-link {
  color: #2F80ED !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-link::after {
  content: '→';
  transition: transform 0.2s ease;
}

.service-link:hover::after { transform: translateX(4px); }

/* ===================================================
   EXCEPTIONAL FUTURES PROGRAMME — Luxury Glass
   =================================================== */
.section--white-editorial {
  background: #ffffff !important;
}

.programme-luxury {
  position: relative;
  overflow: hidden;
}

/* Subtle tinted bg behind programme */
.programme-luxury::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f7faff 0%, #eef5ff 50%, #f0fbfe 100%);
  z-index: 0;
}

.programme-luxury .container { position: relative; z-index: 1; }

.programme-premium-content .section-subtitle {
  color: #2BB6C4 !important;
}

.programme-luxury-title {
  color: #0B2C4A !important;
}

.programme-premium-content .lead-text {
  color: #4a6b8a !important;
}

/* Pillar cards — frosted glass on light bg */
.pillar-card-luxury {
  background: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(47, 128, 237, 0.12) !important;
  box-shadow: 0 4px 20px rgba(11, 44, 74, 0.06) !important;
  padding: 1.5rem !important;
  position: relative;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.pillar-card-luxury::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #2F80ED, #2BB6C4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pillar-card-luxury:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 36px rgba(11, 44, 74, 0.12) !important;
  border-color: rgba(47, 128, 237, 0.25) !important;
}

.pillar-card-luxury:hover::after { transform: scaleX(1); }

.pillar-num {
  color: #2F80ED !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  font-family: 'Playfair Display', serif;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.pillar-card-luxury h4 {
  color: #0B2C4A !important;
  font-size: 1rem !important;
}

.pillar-card-luxury p {
  color: #4a6b8a !important;
  font-size: 0.88rem !important;
  margin-bottom: 0 !important;
}

/* Programme image — premium frame */
.luxury-image-col .image-wrapper {
  position: relative;
}

.luxury-image-col img {
  box-shadow: 0 24px 64px rgba(11, 44, 74, 0.18) !important;
  border: 1px solid rgba(47, 128, 237, 0.1);
}

.image-accent-border {
  position: absolute !important;
  bottom: -16px !important;
  right: -16px !important;
  width: 60% !important;
  height: 60% !important;
  border: 2px solid rgba(47, 128, 237, 0.25) !important;
  border-radius: 0 !important;
  z-index: -1;
}

/* Programme buttons */
.programme-luxury .btn-primary {
  background: linear-gradient(135deg, #2F80ED, #2BB6C4) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(47, 128, 237, 0.35) !important;
}

.programme-luxury .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(47, 128, 237, 0.45) !important;
}

.programme-luxury .btn-outline {
  border: 2px solid #2F80ED !important;
  color: #2F80ED !important;
}

.programme-luxury .btn-outline:hover {
  background: #2F80ED !important;
  color: #ffffff !important;
}

/* ===================================================
   SAFEGUARDING — Dark Glass Split
   =================================================== */
.safeguarding-premium {
  background: linear-gradient(135deg, #071E35 0%, #0B2C4A 50%, #0D3660 100%) !important;
  position: relative;
  overflow: hidden;
}

/* Light leak effect */
.safeguarding-premium::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(43, 182, 196, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.safeguarding-premium::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(47, 128, 237, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.safeguarding-content .section-subtitle {
  color: #2BB6C4 !important;
}

.safeguarding-content h2 {
  color: #ffffff !important;
}

.safeguarding-content .lead-text,
.safeguarding-content p {
  color: rgba(176, 196, 220, 0.9) !important;
}

/* Glass card */
.safeguarding-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(47, 128, 237, 0.2) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.08) !important;
  padding: 2.5rem !important;
  position: relative;
}

.safeguarding-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #2F80ED, #2BB6C4, #8FD3F4);
}

.safeguarding-card h3 {
  color: #ffffff !important;
  margin-bottom: 1.75rem !important;
  font-size: 1.2rem !important;
}

.safeguarding-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 1rem !important;
  padding: 0.85rem 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  transition: padding-left 0.2s ease;
}

.safeguarding-item:last-child {
  border-bottom: none !important;
}

.safeguarding-item:hover { padding-left: 0.5rem; }

.item-icon {
  font-size: 1.1rem !important;
  flex-shrink: 0 !important;
  opacity: 0.9;
  margin-top: 1px;
}

.safeguarding-item p {
  color: rgba(200, 220, 235, 0.9) !important;
  font-size: 0.9rem !important;
  margin-bottom: 0 !important;
  line-height: 1.5;
}

.safeguarding-item strong {
  color: #ffffff !important;
}

.safeguarding-premium .btn-outline {
  border-color: rgba(143, 211, 244, 0.5) !important;
  color: #8FD3F4 !important;
  backdrop-filter: blur(8px);
  background: rgba(47, 128, 237, 0.08) !important;
}

.safeguarding-premium .btn-outline:hover {
  background: rgba(47, 128, 237, 0.2) !important;
  border-color: #8FD3F4 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* ===================================================
   CONTACT CTA SECTION — Hero Glass Panel
   =================================================== */
.contact-section-premium {
  background: linear-gradient(
    135deg, 
    rgba(11, 44, 74, 0.95) 0%, 
    rgba(15, 57, 96, 0.88) 50%, 
    rgba(22, 74, 122, 0.85) 100%
  ), url('../images/contact-staff.png') center/cover no-repeat !important;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 !important;
}

/* Atmospheric radial glows */
.contact-section-premium::before {
  content: '';
  position: absolute;
  top: -200px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(47, 128, 237, 0.09) 0%, transparent 65%);
  pointer-events: none;
}

.contact-section-premium::after {
  content: '';
  position: absolute;
  bottom: -150px; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(43, 182, 196, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.contact-overlay {
  display: none !important; /* replaced by section bg */
}

/* Glass card panel */
.contact-card-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(47, 128, 237, 0.2) !important;
  backdrop-filter: blur(24px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(160%) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.08) !important;
  overflow: hidden;
  position: relative;
}

/* Top shimmer border */
.contact-card-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #2F80ED, #8FD3F4, #2BB6C4);
}

.contact-card-content {
  padding: 3.5rem !important;
  position: relative;
  z-index: 1;
}

.contact-subtitle {
  color: #8FD3F4 !important;
  letter-spacing: 2.5px !important;
  font-size: 0.7rem !important;
}

.contact-title {
  color: #ffffff !important;
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
}

.contact-card-content > p {
  color: rgba(176, 196, 220, 0.9) !important;
}

/* Contact list */
.contact-list {
  list-style: none !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-list li:hover {
  background: rgba(47, 128, 237, 0.1);
  border-color: rgba(47, 128, 237, 0.25);
}

.contact-list .icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-list strong {
  display: block;
  color: #ffffff !important;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.2rem;
}

.contact-list a {
  color: #8FD3F4 !important;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-list a:hover { color: #ffffff !important; }

/* CTA Buttons */
.contact-actions .btn-primary {
  background: linear-gradient(135deg, #2F80ED, #2BB6C4) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(47, 128, 237, 0.4) !important;
}

.contact-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(47, 128, 237, 0.55) !important;
}

.btn-secondary-dark {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  backdrop-filter: blur(8px);
}

.btn-secondary-dark:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(143, 211, 244, 0.4) !important;
  transform: translateY(-2px);
}

/* Contact image panel */
.contact-card-image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.contact-card-image img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  filter: brightness(0.85) saturate(1.1);
  transition: transform 0.5s ease;
}

.contact-card-image:hover img { transform: scale(1.03); }

/* ===================================================
   FOOTER — Premium Glassy Dark Enhancement
   =================================================== */
.site-footer {
  background: #040D14 !important;
}

.footer-main-premium {
  background: linear-gradient(160deg, #06111C 0%, #040D14 100%) !important;
  border-top: 1px solid rgba(47, 128, 237, 0.12) !important;
}

.footer-bottom-master {
  background: #020A10 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
}

/* ===================================================
   BACK TO TOP — Gradient glow
   =================================================== */
.back-to-top {
  background: linear-gradient(135deg, #2F80ED, #2BB6C4) !important;
  box-shadow: 0 8px 24px rgba(47, 128, 237, 0.45) !important;
  border-radius: 0 !important;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #1E62C1, #1EA4B0) !important;
  transform: translateY(-3px);
}

/* ===================================================
   RESPONSIVE ADJUSTMENTS
   =================================================== */
@media (max-width: 900px) {
  .contact-card-panel {
    grid-template-columns: 1fr !important;
  }

  .contact-card-image {
    min-height: 280px !important;
  }

  .trust-item-premium {
    padding: 1.5rem 1.5rem !important;
  }

  .hero-premium-content::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .contact-card-content {
    padding: 2.5rem 1.5rem !important;
  }

  .trust-item-premium + .trust-item-premium::before {
    display: none;
  }

  .trust-strip-card {
    gap: 0;
  }

  .trust-item-premium {
    flex: 1 1 calc(50% - 0px);
    min-width: 140px;
    padding: 1.25rem !important;
  }
}