/* ==========================
   GLOBAL STYLES & VARIABLES
========================== */
:root{
  --bg-1: #0f0f10;
  --bg-2: #181a1f;
  --surface-1: #0d1117;
  --card-1: #111827;
  --card-2: #0d131f;
  --text: #f5f5f5;
  --muted: #cfd4dc;
  --accent-a: #00e5ff;
  --accent-b: #ff00ff;
  --glass: rgba(255,255,255,0.04);
  --transition-fast: 0.22s;
  --hero-lottie-opacity: 0.25;
  --max-width: 1300px;
}

/* reset */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }
body{
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* Container */
.container, .container-dark {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 12px;
  position: relative;
}

/* ==========================
   NAVBAR
========================== */
.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(15,15,16,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 1rem 0;
}
.nav h1 { margin:0; font-size:1.8rem; font-weight:700; }
.nav h1 a{
  color:var(--text); text-decoration:none;
}
.nav h1 span { color:var(--accent-a); }

.navbar ul{
  display:flex;
  gap:2rem;
  list-style:none;
  align-items:center;
}
.navbar .nav-link{
  color:#ddd;
  font-weight:500;
  text-decoration:none;
  position:relative;
  transition: color var(--transition-fast) ease, transform var(--transition-fast);
  outline: none;
}
.navbar .nav-link:focus-visible {
  box-shadow: 0 0 0 4px rgba(0,224,255,0.08);
  border-radius: 6px;
}
.navbar .nav-link:hover{ color: var(--accent-a); transform: translateY(-1px); }
.navbar .nav-link::after{
  content:"";
  position:absolute; left:0; bottom:-6px; height:2px; width:0;
  background: linear-gradient(90deg,var(--accent-a),var(--accent-b));
  transition: width var(--transition-fast) ease;
}
.navbar .nav-link:hover::after { width:100%; }

/* Mobile Menu Icon */
.button-menu-container{
  display:none;
  font-size:1.8rem;
  color:var(--text);
  cursor:pointer;
}
.button-menu-container:focus-visible{ outline: none; box-shadow: 0 0 0 4px rgba(0,224,255,0.06); border-radius:8px; }

/* Mobile menu (toggled by JS via .show) */
.navbar ul.show{
  display:block;
  position:absolute;
  left:0; right:0;
  top:100%;
  background: linear-gradient(180deg, rgba(10,12,15,0.98), rgba(10,12,15,0.98));
  padding: 16px;
  flex-direction: column;
  gap: 12px;
  z-index: 1001;
  border-bottom: 1px solid rgba(255,255,255,0.02);
}
.navbar ul.show li { width:100%; }
.navbar ul.show .nav-link { display:block; padding:10px 14px; border-radius:8px; }

/* ==========================
   HERO SECTION
========================== */
.hero{
  padding: 5rem 0;
  display:flex;
  align-items:center;
  min-height: calc(100vh - 80px); /* accounts for header */
  position:relative; /* for absolute Lottie & overlays */
  overflow: hidden;
}

/* Two-column grid that collapses gracefully (scoped to hero to avoid conflicts) */
.hero .row-grid-2{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap: 3rem;
  align-items:center;
}

/* Left Content */
.hero-content h1{ font-size:2.7rem; line-height:1.15; margin-bottom:1rem; color:var(--text); }
.hero-content p{ font-size:1.05rem; color:#ccc; margin-bottom:1rem; }
.hero-subtext{ color:#aaa; font-style:italic; margin-bottom:1.25rem; }

/* Buttons */
.button-container{ display:flex; gap:1rem; margin-bottom:2rem; }
.outline-button, .fill-button{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.8rem 1.4rem; border-radius:10px; font-size:.95rem; font-weight:600;
  text-decoration:none; transition: all var(--transition-fast) ease; cursor:pointer;
}
.outline-button{ color:var(--accent-a); border:2px solid rgba(0,229,255,0.12); background:transparent; }
.outline-button:hover{ background: rgba(0,229,255,0.06); }
.fill-button{ background: linear-gradient(90deg,var(--accent-a),var(--accent-b)); color:#08121a; border: none; }
.fill-button:hover{ transform: translateY(-2px); }

/* Trust indicators */
.trust-indicators{ font-size:0.92rem; color:var(--muted); }
.trust-indicators ul{ list-style: disc; margin-left:1.4rem; color:#bfbfbf; }

/* Hero Lottie wrapper */
.hero-image-lottie-wrapper{ position:relative; min-height: 320px; display:flex; align-items:center; justify-content:center; }
.hero-image-lottie-wrapper img{ max-width:100%; border-radius:12px; position:relative; z-index:2; }

/* Lottie container (absolute background) */
#hero-lottie-bg{
  position:absolute; top:0; left:0; width:100%; height:100%; z-index:0; pointer-events:none;
  opacity: var(--hero-lottie-opacity);
  transition: opacity 300ms ease;
}
#hero-lottie-bg lottie-player, .hero-image-lottie-wrapper lottie-player {
  display:block; width:100%; height:100%;
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 992px){
  .hero .row-grid-2 { grid-template-columns: 1fr; text-align:center; }
  .button-container { justify-content:center; }
  .hero { padding: 3.5rem 0; min-height:unset; }
}
@media (max-width: 768px){
  .navbar ul { display:none; }
  .button-menu-container { display:block; }
  .nav h1 { font-size:1.4rem; }
}

/* ==========================
   DARK MODE: Services Section
========================== */
.main-dark{
  background: var(--surface-1);
  color:var(--text);
  padding: 80px 20px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* unified container-dark (merged definitions) */
.container-dark{
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

/* Section Title */
.section-title-dark{ text-align:center; margin-bottom:48px; }
.section-title-dark h2{
  font-size:2.4rem; font-weight:800; margin:0;
  background: linear-gradient(90deg,var(--accent-a),var(--accent-b));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  animation: fadeSlideDown 0.7s cubic-bezier(.2,.9,.2,1);
}
.section-title-dark p{ color:var(--muted); font-size:1.05rem; max-width:720px; margin:10px auto 0; line-height:1.6; }

/* Card Grid (modern: auto-fit) */
.grid-3-cards-dark{
  display:grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
  grid-auto-rows: minmax(180px, auto);
}

/* Card */
.card-service-dark{
  background: linear-gradient(145deg, var(--card-1), var(--card-2));
  border-radius: 14px;
  padding: 22px;
  display:flex;
  flex-direction:column;
  gap:14px;
  position:relative;
  overflow:hidden;
  transition: transform 360ms cubic-bezier(.2,.9,.2,1), box-shadow 360ms ease;
  border: 1px solid var(--glass);
  min-height: 180px;
  will-change: transform;
}
.card-service-dark::before{
  content:""; position:absolute; top:-45%; left:-45%; width:200%; height:200%;
  background: radial-gradient(circle, rgba(0,240,255,0.06), transparent 65%);
  transform: rotate(20deg); transition: opacity 420ms ease; opacity:0;
}
.card-service-dark:hover::before{ opacity:1; }
.card-service-dark:hover{ transform: translateY(-8px); box-shadow: 0 18px 40px rgba(0,240,255,0.08); }

/* Icon wrapper */
.icon-wrapper-dark{
  width:64px; height:64px; border-radius:12px;
  display:flex; align-items:center; justify-content:center; font-size:1.6rem;
  background: rgba(0,240,255,0.06); color: var(--accent-a); transition: transform 260ms ease, background 260ms ease;
}
.card-service-dark:hover .icon-wrapper-dark{
  background: linear-gradient(90deg,var(--accent-a),var(--accent-b)); color:#fff; transform: scale(1.06);
}

/* Card content */
.card-content-dark h4{ font-size:1.18rem; font-weight:700; color: #fff; margin:0; }
.card-content-dark p{ color: var(--muted); font-size:0.95rem; line-height:1.55; margin:0; }

/* Why choose block */
.why-choose-dark{
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02));
  border-radius: 14px; padding:36px; margin-top:48px; border: 1px solid var(--glass);
  animation: fadeSlideUp 0.7s cubic-bezier(.2,.9,.2,1);
}
.why-choose-dark h3{ font-size:1.4rem; margin-bottom:18px; color:#fff; }
.why-choose-dark ul{ list-style:none; padding:0; margin:0; }
.why-choose-dark li{ padding-left:26px; position:relative; color:var(--muted); margin-bottom:12px; }
.why-choose-dark li::before{ content:"✔"; position:absolute; left:0; color:var(--accent-a); }

/* ==========================
   Shared Animations (single definitions)
   Consolidated to avoid duplicate redefinitions
========================== */
@keyframes fadeSlideUp {
  from { opacity:0; transform: translateY(18px); }
  to { opacity:1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity:0; transform: translateY(-12px); }
  to { opacity:1; transform: translateY(0); }
}
@keyframes rotateBg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition:none !important; animation:none !important; }
}

/* Responsive tweaks */
@media (max-width: 768px){
  .section-title-dark h2 { font-size:1.85rem; }
  .card-service-dark { padding:18px; min-height: unset; }
}

/* ===== Feature Section Dark Mode ===== */
.feature-section {
  background: linear-gradient(180deg, #0b0f19, #0e1423);
  padding: 80px 20px;
  color: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.feature-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.05), transparent 70%);
  animation: rotateBg 15s linear infinite;
}

.feature-row-dark {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 50px;
}

.image-wrapper-dark {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-wrapper-dark lottie-player {
  filter: drop-shadow(0px 0px 15px rgba(0, 240, 255, 0.2));
  transition: transform 0.5s ease;
}

.image-wrapper-dark:hover lottie-player {
  transform: scale(1.05);
}

.feature-content-dark h2 {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00f0ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  animation: fadeSlideDown 0.8s ease-out;
}

.feature-content-dark p {
  font-size: 1.05rem;
  color: #cfd4dc;
  margin-bottom: 15px;
  line-height: 1.6;
  animation: fadeSlideUp 0.8s ease-out;
}

.button-learn-dark {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(90deg, #00f0ff, #ff00ff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.25);
}

.button-learn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 240, 255, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
  .feature-row-dark {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .feature-content-dark h2 {
    font-size: 2rem;
  }
}

/* ===== Stats Section Dark Mode ===== */
.stats-section-dark {
  background: linear-gradient(180deg, #0e1423, #0b0f19);
  padding: 80px 20px;
  position: relative;
  color: #f5f5f5;
  overflow: hidden;
}

.stats-section-dark::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.05), transparent 70%);
  animation: rotateBg 20s linear infinite;
}

/* Grid Layout */
.grid-2-row-dark {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.stats-title-dark h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #00f0ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeSlideDown 0.8s ease-out;
}

.stats-title-dark h2 span {
  color: #00f0ff;
}

.stats-title-dark p {
  font-size: 1.1rem;
  color: #cfd4dc;
  animation: fadeSlideUp 0.8s ease-out;
}

/* Stats Details */
.fixed-grid-2-dark {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.stats-detail-dark {
  background: linear-gradient(145deg, #111827, #0d131f);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.stats-detail-dark::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.08), transparent 70%);
  transform: rotate(25deg);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.stats-detail-dark:hover::before {
  opacity: 1;
}

.stats-detail-dark:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 240, 255, 0.25);
}

.stats-detail-dark i {
  font-size: 2.2rem;
  color: #00f0ff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.stats-detail-dark:hover i {
  color: #ff00ff;
  transform: scale(1.15);
}

.stats-detail-dark h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.stats-detail-dark p {
  font-size: 0.95rem;
  color: #cfd4dc;
}

/* Responsive */
@media (max-width: 992px) {
  .grid-2-row-dark {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .stats-title-dark h2 {
    font-size: 2rem;
  }
}

/* ===== Feature Section Alt Dark Mode ===== */
.feature-section-alt-dark {
  background: linear-gradient(180deg, #0b0f19, #0e1423);
  padding: 80px 20px;
  color: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.feature-section-alt-dark::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.05), transparent 70%);
  animation: rotateBg 25s linear infinite;
}

/* Grid Layout */
.grid-2-row-dark {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

/* Image Styling */
.image-wrapper-dark {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-fluid-dark {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 240, 255, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-fluid-dark:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 240, 255, 0.25);
}

/* Content Styling */
.feature-content-dark h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #00f0ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeSlideDown 0.8s ease-out;
}

.feature-content-dark p {
  font-size: 1.05rem;
  color: #cfd4dc;
  margin-bottom: 15px;
  animation: fadeSlideUp 0.8s ease-out;
}

/* Ordered List Styling */
.feature-content-dark ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.feature-content-dark ol li {
  margin-bottom: 8px;
  color: #cfd4dc;
  position: relative;
}

.feature-content-dark ol li::marker {
  color: #00f0ff;
  font-weight: bold;
}

/* Button Styling */
.button-learn-dark {
  display: inline-block;
  background: linear-gradient(145deg, #00f0ff, #ff00ff);
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button-learn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 240, 255, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .grid-2-row-dark {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .image-wrapper-dark {
    margin-bottom: 30px;
  }
  .feature-content-dark h2 {
    font-size: 1.8rem;
  }
}

/* ======= Section Wrapper Generic Styles ======= */
.trending-technologies,
.case-studies,
.testimonials,
.industries,
.pricing-snapshot {
  background: linear-gradient(180deg, #0b0f19, #0e1423);
  color: #f5f5f5;
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00f0ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 1.05rem;
  color: #cfd4dc;
  max-width: 700px;
  margin: 0 auto;
}

/* ======= Card Generic Styling ======= */
.card-service,
.industry-card,
.pricing-card,
.testimonial-card,
.case-study {
  background: linear-gradient(145deg, #111827, #0d131f);
  border-radius: 16px;
  padding: 25px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-service:hover,
.industry-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.case-study:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 240, 255, 0.2);
}

/* ======= Trending Technologies ======= */
.row-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.icon-container {
  background: rgba(0, 240, 255, 0.1);
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  font-size: 1.8rem;
  color: #00f0ff;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.card-service:hover .icon-container {
  background: linear-gradient(145deg, #00f0ff, #ff00ff);
  color: #fff;
}

.card-service-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.card-service-content p {
  font-size: 0.95rem;
  color: #cfd4dc;
}

/* ======= Case Studies ======= */
/* Scoped .row-grid-2 inside .case-studies to avoid conflict with hero */
.case-studies .row-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.case-study h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.case-study p {
  font-size: 0.95rem;
  color: #cfd4dc;
  margin-bottom: 8px;
}

.case-study strong {
  color: #00f0ff;
}

.case-study-cta {
  margin-top: 30px;
  text-align: center;
  font-size: 0.95rem;
}

.case-study-cta a {
  color: #00f0ff;
  text-decoration: none;
}

/* ======= Testimonials ======= */
.testimonial-card p {
  font-style: italic;
  font-size: 0.95rem;
  color: #cfd4dc;
}

.testimonial-card h5 {
  margin-top: 10px;
  font-weight: 500;
  color: #00f0ff;
}

/* ======= Industries ======= */
.industry-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #fff;
}

.industry-card p {
  font-size: 0.95rem;
  color: #cfd4dc;
}

/* ======= Pricing ======= */
.pricing-card h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.pricing-card p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #cfd4dc;
}

.pricing-card ul {
  list-style: none;
  padding-left: 0;
}

.pricing-card li {
  font-size: 0.9rem;
  margin-bottom: 6px;
  padding-left: 20px;
  position: relative;
  color: #cfd4dc;
}

.pricing-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00f0ff;
}

.pricing-cta {
  margin-top: 30px;
  text-align: center;
  font-size: 0.95rem;
}

.pricing-cta a {
  color: #00f0ff;
  text-decoration: none;
}

/* ======= Responsive ======= */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 1.8rem;
  }
}

/* ======= Blog Preview ======= */
.blog-preview {
  background: linear-gradient(180deg, #0b0f19, #0e1423);
  padding: 80px 20px;
  color: #f5f5f5;
}

.blog-preview .section-title h2 {
  background: linear-gradient(90deg, #00f0ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-card {
  background: linear-gradient(145deg, #111827, #0d131f);
  padding: 25px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 240, 255, 0.2);
}

.blog-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.blog-card p {
  font-size: 0.95rem;
  color: #cfd4dc;
}

.blog-card .button-learn h5 {
  font-size: 0.95rem;
  color: #00f0ff;
}

/* ======= FAQ ======= */
.faq-section-dark {
  background: linear-gradient(180deg, #0b0f19, #0e1423);
  padding: 80px 20px;
  color: #f5f5f5;
}

.faq-section-dark .section-title-dark h2 {
  background: linear-gradient(90deg, #00f0ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-list-dark details {
  background: linear-gradient(145deg, #111827, #0d131f);
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-list-dark summary {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.faq-list-dark p {
  font-size: 0.95rem;
  margin-top: 10px;
  color: #cfd4dc;
}

/* ======= Contact ======= */
.contact {
  background: linear-gradient(180deg, #0b0f19, #0e1423);
  padding: 80px 20px;
  color: #f5f5f5;
}

.contact-card {
  background: linear-gradient(145deg, #111827, #0d131f);
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 240, 255, 0.2);
}

.contact-card i {
  font-size: 1.8rem;
  color: #00f0ff;
  margin-bottom: 10px;
}

.contact-card h4 {
  color: #fff;
  margin-bottom: 6px;
}

.contact-card a,
.contact-card p {
  color: #cfd4dc;
  text-decoration: none;
}

.contact-form-container {
  margin-top: 40px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  margin-bottom: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00f0ff;
}

.contact-button {
  background: linear-gradient(90deg, #00f0ff, #ff00ff);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-button:hover {
  opacity: 0.9;
}

.form-note {
  font-size: 0.85rem;
  color: #cfd4dc;
}

/* ======= Newsletter ======= */
.newsletter-cta {
  background: linear-gradient(180deg, #0b0f19, #0e1423);
  padding: 60px 20px;
  color: #f5f5f5;
}

.newsletter-text h3 {
  font-size: 1.6rem;
  background: linear-gradient(90deg, #00f0ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.newsletter-text p {
  font-size: 1rem;
  color: #cfd4dc;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 14px;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  margin-bottom: 10px;
}

.newsletter-form button {
  background: transparent;
  border: 1px solid #00f0ff;
  color: #00f0ff;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #00f0ff;
  color: #0b0f19;
}

.newsletter-form .form-note {
  font-size: 0.85rem;
  color: #cfd4dc;
}

/* ======= Grid Reuse (generic) ======= */
.row-grid-2,
.row-grid-3 {
  display: grid;
  gap: 25px;
}

.row-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.row-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ======= Responsive ======= */
@media (max-width: 768px) {
  .newsletter-text h3 {
    font-size: 1.3rem;
  }
  .section-title h2 {
    font-size: 1.8rem;
  }
}

/* ======= Footer ======= */
.footer {
  background: linear-gradient(180deg, #98999a, #0e1423);
  padding: 60px 20px 30px;
  color: #f5f5f5;
}

.footer .row-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.footer-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #00f0ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-content h2 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
}

.footer-content p {
  font-size: 0.95rem;
  color: #cfd4dc;
  line-height: 1.6;
}

.footer-content ul {
  list-style: none;
  padding: 0;
}

.footer-content li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.footer-content li i {
  color: #00f0ff;
  margin-right: 8px;
  font-size: 1.1rem;
}

.footer-content a {
  text-decoration: none;
  color: #cfd4dc;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: #00f0ff;
}

.footer-content h6 {
  font-size: 0.95rem;
  font-weight: 500;
}

.footer .image-container {
  margin-top: 15px;
}

.footer .image-container a {
  font-size: 1.8rem;
  color: #cfd4dc;
  margin-right: 12px;
  transition: color 0.3s ease;
}

.footer .image-container a:hover {
  color: #00f0ff;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #cfd4dc;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ======= Site Legal (visually hidden but accessible) ======= */
.site-legal {
  font-size: 0.75rem;
  color: #aaa;
  padding: 10px;
  background: #0d1117;
  display: none; /* Hide by default */
}

/* ======= Responsive ======= */
@media (max-width: 768px) {
  .footer-content h3 {
    font-size: 1.3rem;
  }
  .footer-content h2 {
    font-size: 1.05rem;
  }
}
