/* ========================================
   PRIME FAST HACKERS - Modern Grey Theme
   Premium Cybersecurity Design System
   ======================================== */

/* :: 1.0 Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* :: 2.0 CSS Custom Properties (Design Tokens) */
:root {
  /* Grey Color Palette - Dark Theme */
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-tertiary: #1a1a24;
  --bg-elevated: #1e1e2a;

  /* Grey Shades */
  --grey-100: #2d2d3a;
  --grey-200: #3d3d4a;
  --grey-300: #5a5a6e;
  --grey-400: #7a7a90;
  --grey-500: #9898a8;

  /* Text Colors */
  --text-primary: #f0f0f5;
  --text-secondary: #b8b8c8;
  --text-muted: #7a7a90;

  /* Accent Colors */
  --accent-cyan: #00d4ff;
  --accent-purple: #8b5cf6;
  --accent-cyan-glow: rgba(0, 212, 255, 0.4);
  --accent-purple-glow: rgba(139, 92, 246, 0.4);

  /* Gradients */
  --gradient-accent: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  --gradient-bg: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  --gradient-hero: linear-gradient(135deg, var(--bg-primary) 0%, #0d1520 50%, var(--bg-secondary) 100%);

  /* Glass Effect */
  --glass-bg: rgba(18, 18, 26, 0.8);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(20px);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow-cyan: 0 0 30px var(--accent-cyan-glow);
  --shadow-glow-purple: 0 0 30px var(--accent-purple-glow);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* :: 3.0 Base Styles - FORCE OVERRIDE rubic.css */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* CRITICAL: Override rubic.css white backgrounds */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  background: var(--bg-primary) !important;
  background-color: var(--bg-primary) !important;
  color: var(--text-primary) !important;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Force all containers and sections to dark background */
.container,
.container-fluid,
.row,
section,
article,
aside,
main,
div {
  background-color: transparent;
}

/* Animated Background Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 80%, var(--accent-cyan-glow) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, var(--accent-purple-glow) 0%, transparent 50%);
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

/* :: 3.1 Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2,
.display-4 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
}

h5,
h6,
.title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 1rem;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--accent-purple);
  text-decoration: none;
}

/* :: 3.2 Text Utilities */
.text-primary {
  color: var(--accent-cyan) !important;
}

.text-secondary {
  color: var(--text-secondary) !important;
}

.text-danger {
  color: #ff6b6b !important;
}

.text-info {
  color: var(--accent-cyan) !important;
}

.text-warning {
  color: #ffd93d !important;
}

.text-light {
  color: var(--text-primary) !important;
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gradient Line Under Headings */
.has-line {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.has-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

/* :: 4.0 Navigation */
.navbar,
.page-navbar {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
  transition: var(--transition-normal);
}

.navbar.affix,
.page-navbar.affix {
  background: rgba(10, 10, 15, 0.95) !important;
  box-shadow: var(--shadow-md);
}

.navbar-brand .logo {
  height: 45px;
  transition: var(--transition-normal);
}

.navbar-brand:hover .logo {
  transform: scale(1.05);
}

.navbar-nav .nav-item {
  margin: 0 0.25rem;
}

.navbar-nav .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem !important;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  position: relative;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
  color: var(--text-primary) !important;
  background: rgba(255, 255, 255, 0.05);
}

.navbar-nav .nav-link:hover::before {
  width: 60%;
}

.navbar-nav .nav-link.active {
  color: var(--accent-cyan) !important;
  background: rgba(0, 212, 255, 0.1);
}

.navbar-toggler {
  border: 1px solid var(--grey-200);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

.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%28240, 240, 245, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* :: 5.0 Hero Section */
.header,
.header1 {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.header::before,
.header1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.12) 0%, transparent 40%);
  pointer-events: none;
}

/* Animated Grid Pattern */
.header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(var(--grey-100) 1px, transparent 1px),
    linear-gradient(90deg, var(--grey-100) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.05;
  pointer-events: none;
}

.header-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.header-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.header-title strong,
.header-title .text-primary {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.header-content p {
  font-size: 1.125rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

/* :: 6.0 Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary,
.btn-info {
  background: var(--gradient-accent);
  color: var(--bg-primary) !important;
  box-shadow: var(--shadow-glow-cyan);
}

.btn-primary:hover,
.btn-info:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px var(--accent-cyan-glow), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid var(--text-primary);
  color: var(--text-primary);
}

.btn-outline-light:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
  transform: translateY(-3px);
}

.btn-outline-danger {
  background: transparent;
  border: 2px solid var(--accent-purple);
  color: var(--accent-purple);
}

.btn-outline-danger:hover {
  background: var(--accent-purple);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-purple);
}

.btn-warning {
  background: linear-gradient(135deg, #ffd93d, #ff9500);
  color: var(--bg-primary) !important;
}

.btn-warning:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 217, 61, 0.4);
}

.btn-flat {
  border-radius: var(--radius-md);
}

/* :: 7.0 Sections */
.section {
  padding: 100px 0;
  position: relative;
  background: var(--bg-primary);
}

.section:nth-child(even) {
  background: var(--bg-secondary);
}

/* Section with Background Image Overlay */
.has-img-bg {
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.95), rgba(18, 18, 26, 0.9)),
    url('assets/imgs/pattern.png');
  background-size: cover;
  background-attachment: fixed;
}

/* :: 8.0 Service/Feature Cards */
.social-wrapper {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.social-wrapper .row>div {
  padding: 2rem;
}

.circle-40 {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--gradient-accent);
  box-shadow: var(--shadow-glow-cyan);
  transition: var(--transition-normal);
}

.circle-40 i {
  font-size: 1.75rem;
  color: var(--bg-primary);
}

.circle-40:hover {
  transform: scale(1.1) rotate(5deg);
}

.circle-100 {
  width: 100px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  transition: var(--transition-normal);
}

.circle-100 i {
  font-size: 2.5rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.circle-100:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow-cyan);
  transform: translateY(-5px);
}

/* Glass Cards */
.card,
.tabs-container,
.single-contact-area {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: var(--transition-normal);
}

.card:hover,
.tabs-container:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-md), 0 0 30px rgba(0, 212, 255, 0.1);
  transform: translateY(-5px);
}

/* :: 9.0 Tabs */
.tabs-container {
  padding: 2rem;
}

.tab-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--grey-100);
  padding-bottom: 1rem;
}

.tab-nav .item {
  flex: 1;
}

.tab-nav .link {
  display: block;
  padding: 0.75rem 1.5rem;
  text-align: center;
  border-radius: var(--radius-md);
  color: var(--text-secondary) !important;
  font-weight: 500;
  transition: var(--transition-fast);
}

.tab-nav .link:hover,
.tab-nav .link.active {
  background: var(--gradient-accent);
  color: var(--bg-primary) !important;
}

.tab-content {
  padding: 1rem 0;
}

.tab-content .title {
  color: var(--accent-cyan);
  margin-bottom: 1rem;
}

/* :: 10.0 Lists */
.list-unstyled {
  padding: 0;
}

.media {
  display: flex;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--grey-100);
  transition: var(--transition-fast);
}

.media:last-child {
  border-bottom: none;
}

.media:hover {
  padding-left: 0.5rem;
}

.media i {
  color: var(--accent-cyan);
  margin-right: 1rem;
  margin-top: 0.25rem;
  font-size: 1rem;
}

.media-body p {
  margin: 0;
  color: var(--text-secondary);
}

.media:hover .media-body p {
  color: var(--text-primary);
}

/* :: 11.0 Images */
img {
  max-width: 100%;
  height: auto;
}

.tower {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
}

.round {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* :: 12.0 Footer */
.footer {
  background: var(--bg-primary) !important;
  border-top: 1px solid var(--glass-border);
  padding: 3rem 0 !important;
}

.footer p {
  color: var(--text-muted);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links .link {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  transition: var(--transition-normal);
}

.social-links .link:hover {
  background: var(--gradient-accent);
  border-color: transparent;
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-cyan);
}

.social-links .link i {
  font-size: 1.1rem;
}

/* :: 13.0 Google Translate Styles */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-te-gadget {
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent;
}

#google_translate_element {
  height: 35px !important;
  overflow: hidden !important;
}

#google_translate_element select {
  font-size: 14px;
  padding: 8px 12px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  background: var(--bg-tertiary);
  cursor: pointer;
}

.goog-logo-link {
  display: none !important;
}

.goog-tooltip {
  display: none !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* :: 14.0 Display Utilities */
.display-3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
}

.display-4 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
}

/* :: 15.0 Spacing Utilities */
.mt-15 {
  margin-top: 15px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

/* :: 16.0 Backgrounds */
.bg-dark {
  background: var(--bg-primary) !important;
}

.m-bg {
  background: transparent !important;
}

/* :: 17.0 Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 20px var(--accent-cyan-glow);
  }

  50% {
    box-shadow: 0 0 40px var(--accent-cyan-glow);
  }
}

/* Animate elements on scroll */
.animate-fade-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

/* :: 18.0 Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-top: 1rem;
    border: 1px solid var(--glass-border);
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
  }

  .header,
  .header1 {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 767.98px) {
  .header-title {
    font-size: 1.75rem;
  }

  .header-subtitle {
    font-size: 0.875rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  .circle-40 {
    width: 60px;
    height: 60px;
  }

  .circle-100 {
    width: 80px;
    height: 80px;
  }

  .px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .display-3,
  .display-4 {
    font-size: 1.5rem;
  }
}

/* :: 19.0 Print Styles */
@media print {
  body {
    background: white;
    color: black;
  }

  .navbar,
  .footer,
  .social-links {
    display: none;
  }
}

/* :: 20.0 Scroll Effects */
html {
  scroll-padding-top: 80px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--grey-200);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--grey-300);
}

/* Selection Color */
::selection {
  background: var(--accent-cyan);
  color: var(--bg-primary);
}

/* Focus States for Accessibility */
:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}

/* =====================================================
   :: 21.0 CRITICAL OVERRIDES FOR RUBIC.CSS & BOOTSTRAP
   These styles MUST override the white backgrounds
   ===================================================== */

/* Force dark backgrounds on ALL elements */
html,
body {
  background: var(--bg-primary) !important;
  background-color: var(--bg-primary) !important;
}

/* Override Bootstrap/Rubic background utilities */
.bg-white,
.bg-light {
  background-color: var(--bg-secondary) !important;
}

.bg-dark {
  background-color: var(--bg-primary) !important;
}

/* Fix ALL section backgrounds */
.section,
section,
.social-wrapper,
.container-fluid,
.header,
.header1,
#features,
#about,
#review,
.has-img-bg {
  background-color: var(--bg-primary) !important;
}

/* Alternate section backgrounds */
.section:nth-child(even),
section:nth-child(even) {
  background-color: var(--bg-secondary) !important;
}

/* Social wrapper specific fix */
.social-wrapper {
  background: var(--bg-secondary) !important;
  border-top: 1px solid var(--glass-border) !important;
  border-bottom: 1px solid var(--glass-border) !important;
}

/* Tab content and panels */
.tab-content,
.tab-pane,
.tabs-container {
  background-color: var(--glass-bg) !important;
}

/* Override any white text */
.text-dark {
  color: var(--text-primary) !important;
}

/* Fix img-thumbnail white background */
.img-thumbnail {
  background-color: var(--bg-secondary) !important;
  border-color: var(--glass-border) !important;
}

/* Fix mark/highlight backgrounds */
mark,
.mark {
  background-color: var(--accent-cyan) !important;
  color: var(--bg-primary) !important;
}

/* Fix dropdown menus if any */
.dropdown-menu {
  background-color: var(--bg-tertiary) !important;
  border-color: var(--glass-border) !important;
}

.dropdown-item {
  color: var(--text-secondary) !important;
}

.dropdown-item:hover {
  background-color: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
}

/* =====================================================
   :: 22.0 IMAGE DISPLAY FIXES
   ===================================================== */

/* Ensure all images are visible */
img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
}

/* Hero image */
.header img,
.header1 img,
.header-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Make inline images visible */
img.w-100 {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

/* Card images */
.card img,
.round img,
.tower {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

/* Contact page hacker image */
.single-contact-area img,
.single-contact-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 2px solid var(--glass-border);
}

/* Ensure logo is visible */
.navbar-brand img,
.logo {
  display: block !important;
  max-height: 50px;
  width: auto;
}

/* Column images */
.col-lg-4 img,
.col-lg-5 img,
.col-lg-8 img,
.col-md-5 img,
.col-md-6 img {
  width: 100%;
  height: auto;
  display: block;
}

/* =====================================================
   :: 23.0 ADDITIONAL ELEMENT FIXES
   ===================================================== */

/* Fix elementor classes from contact page */
.elementor-widget-container,
.elementor-icon-list-items,
.elementor-icon-list-item {
  background: transparent !important;
  color: var(--text-secondary);
}

.elementor-icon-list-icon i {
  color: var(--accent-cyan) !important;
}

/* Info section styling */
.info {
  background: transparent;
}

/* Single contact area */
.single-contact-area {
  background: var(--glass-bg) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--radius-lg) !important;
  padding: 2rem !important;
}

.single-contact-content {
  background: transparent !important;
}

/* Fix Bootstrap card backgrounds */
.card,
.card-body,
.card-header,
.card-footer {
  background-color: var(--glass-bg) !important;
  border-color: var(--glass-border) !important;
  color: var(--text-primary) !important;
}

/* Modal fixes if any */
.modal-content {
  background-color: var(--bg-secondary) !important;
  border-color: var(--glass-border) !important;
}

.modal-header,
.modal-footer {
  border-color: var(--glass-border) !important;
}

/* Form elements */
input,
textarea,
select {
  background-color: var(--bg-tertiary) !important;
  border-color: var(--grey-200) !important;
  color: var(--text-primary) !important;
}

input:focus,
textarea:focus,
select:focus {
  background-color: var(--bg-secondary) !important;
  border-color: var(--accent-cyan) !important;
  box-shadow: 0 0 0 3px var(--accent-cyan-glow) !important;
}

/* Placeholder text */
::placeholder {
  color: var(--grey-400) !important;
}

/* Alert/badge fixes */
.alert {
  background-color: var(--bg-tertiary) !important;
  border-color: var(--glass-border) !important;
  color: var(--text-primary) !important;
}

.badge {
  background: var(--gradient-accent) !important;
  color: var(--bg-primary) !important;
}

/* Table fixes */
table,
.table {
  background-color: transparent !important;
  color: var(--text-primary) !important;
}

.table th,
.table td {
  border-color: var(--grey-100) !important;
  color: var(--text-primary) !important;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: var(--bg-secondary) !important;
}

/* Blockquote fixes */
blockquote,
.blockquote {
  border-left: 4px solid var(--accent-cyan) !important;
  background-color: var(--bg-secondary) !important;
  padding: 1rem 1.5rem !important;
  color: var(--text-secondary) !important;
}

/* Pre/code fixes */
pre,
code {
  background-color: var(--bg-tertiary) !important;
  color: var(--accent-cyan) !important;
}

/* Lead text fix */
.lead {
  color: var(--text-secondary) !important;
}

/* Font weight fix */
.font-weight-light {
  color: var(--text-secondary) !important;
}