@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0a1128;
  --primary-light: #162243;
  --accent: #00e5ff;
  --accent-hover: #00b8cc;
  --text-main: #ffffff;
  --text-muted: #a0aabf;
  --bg-gradient: linear-gradient(135deg, #050b1a 0%, #0a1128 100%);
  --card-bg: rgba(22, 34, 67, 0.55);
  --card-border: rgba(255, 255, 255, 0.07);
  --glass-bg: rgba(10, 17, 40, 0.65);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glow: 0 10px 30px rgba(0, 229, 255, 0.18);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
  --radius-lg: 24px;
}

[data-theme="light"] {
  --primary: #f0f4f8;
  --primary-light: #ffffff;
  --accent: #0056b3;
  --accent-hover: #003d82;
  --text-main: #1a202c;
  --text-muted: #4a5568;
  --bg-gradient: linear-gradient(135deg, #e2e8f0 0%, #f0f4f8 100%);
  --card-bg: rgba(255, 255, 255, 0.75);
  --card-border: rgba(255, 255, 255, 0.6);
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.55);
  --glow: 0 10px 30px rgba(0, 86, 179, 0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  word-break: break-word;
}

p,
span,
a,
li {
  word-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ================================= */
/* GLASS */
/* ================================= */

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.2rem;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
  width: 100%;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 86, 179, 0.08), var(--glow);
  border-color: rgba(0, 229, 255, 0.3);
}

/* ================================= */
/* TYPOGRAPHY */
/* ================================= */

.text-gradient {
  background: linear-gradient(to right, #0056b3, #00b8cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.3;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.08rem;
  line-height: 1.8;
}

/* ================================= */
/* BUTTONS */
/* ================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  gap: 0.6rem;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(90deg, #0b5fb6 0%, #00b8cc 100%);
  color: #ffffff;
  position: relative;
  box-shadow: 0 14px 30px rgba(11, 95, 182, 0.18);
  padding: 0.95rem 2.6rem;
  border-radius: 999px;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
  pointer-events: none;
}

.btn-primary i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

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

.btn-outline:hover {
  background: rgba(0, 229, 255, 0.08);
}

/* ================================= */
/* ANIMATIONS */
/* ================================= */

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================================= */
/* NAVBAR */
/* ================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo-img:hover {
  transform: scale(1.03);
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.8rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.logo-rapid {
  color: #0c1c38;
}

[data-theme="dark"] .logo-rapid {
  color: #ffffff;
}

.logo-yatra {
  color: #f26522;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ================================= */
/* HERO */
/* ================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem 5% 5rem;
  position: relative;
  overflow: hidden;
  gap: 3rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, rgba(0,0,0,0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mockup-card {
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  width: 100%;
  max-width: 500px;
}

/* ================================= */
/* SECTION */
/* ================================= */

section {
  padding: 6rem 5%;
  width: 100%;
}

/* ================================= */
/* GRID */
/* ================================= */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

/* ================================= */
/* FEATURES SECTION */
/* ================================= */

.features-explore-section {
  padding-top: 11rem;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  width: 100%;
}

.premium-glass-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
  );
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 2rem 1.6rem;
  transition: all 0.4s ease;
  box-shadow:
    0 10px 35px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.06);
  width: 100%;
}

.premium-glass-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0,229,255,0.35);
}

.feature-icon-wrap {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.7rem;
  font-size: 2rem;
  transition: 0.4s ease;
}

.premium-glass-card:hover .feature-icon-wrap {
  transform: scale(1.08);
}

.icon-electricity {
  background: linear-gradient(135deg, #ffb300, #ff6f00);
  color: #fff;
}

.icon-water {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
}

.icon-gas {
  background: linear-gradient(135deg, #ff512f, #dd2476);
  color: #fff;
}

.icon-mobile {
  background: linear-gradient(135deg, #00b09b, #96c93d);
  color: #fff;
}

.icon-dth {
  background: linear-gradient(135deg, #7f00ff, #e100ff);
  color: #fff;
}

.icon-broadband {
  background: linear-gradient(135deg, #11998e, #38ef7d);
  color: #fff;
}

.icon-fastag {
  background: linear-gradient(135deg, #fc4a1a, #f7b733);
  color: #fff;
}

.icon-insurance {
  background: linear-gradient(135deg, #1d976c, #93f9b9);
  color: #fff;
}

.icon-loan {
  background: linear-gradient(135deg, #f953c6, #b91d73);
  color: #fff;
}

.icon-card {
  background: linear-gradient(135deg, #396afc, #2948ff);
  color: #fff;
}

.icon-education {
  background: linear-gradient(135deg, #ff9966, #ff5e62);
  color: #fff;
}

.icon-health {
  background: linear-gradient(135deg, #11998e, #ff0844);
  color: #fff;
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  line-height: 1.4;
}

.feature-desc {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.96rem;
  margin-bottom: 1.7rem;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  transition: 0.3s ease;
  flex-wrap: wrap;
}

.feature-link:hover {
  gap: 1rem;
}

/* ================================= */
/* POPULAR SERVICES PREVIEW SECTION */
/* ================================= */

.features-preview-section {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  margin: 0 auto;
  width: calc(100% - 10%);
  padding: 6rem 4%;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
  );
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

/* FIXED GRID ALIGNMENT */
.features-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  width: 100%;
  align-items: stretch;
}

/* FIXED CARD SIZE */
.preview-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  height: 100%;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.04)
  );
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.35s ease;
  box-shadow:
    0 10px 35px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.preview-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,229,255,0.35);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.12),
    0 0 20px rgba(0,229,255,0.10);
}

/* ICON */
.preview-icon-wrap {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
  font-size: 2rem;
  transition: 0.4s ease;
  color: #ffffff;
  flex-shrink: 0;
}

.preview-card:hover .preview-icon-wrap {
  transform: scale(1.08);
}

/* TITLE */
.preview-card h4 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  line-height: 1.4;
}

/* DESCRIPTION */
.preview-card p {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 0.97rem;
}

/* EXPLORE BUTTON */
.explore-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.btn-explore-features {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #0b5fb6 0%, #00b8cc 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 14px 30px rgba(11, 95, 182, 0.18);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn-explore-features:hover {
  transform: translateY(-4px);
}

.btn-explore-features i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================= */
/* RESPONSIVE FIX */
/* ================================= */

@media (max-width: 1200px) {

  .features-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {

  .features-preview-section {
    width: calc(100% - 8%);
    padding: 4rem 5%;
    border-radius: 24px;
  }

  .features-preview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .preview-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .preview-icon-wrap {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .btn-explore-features {
    width: 100%;
  }
}

@media (max-width: 480px) {

  .features-preview-section {
    width: calc(100% - 6%);
    padding: 3.5rem 4%;
  }

  .preview-card {
    padding: 1.3rem;
  }

  .preview-icon-wrap {
    width: 62px;
    height: 62px;
    font-size: 1.5rem;
  }

  .preview-card h4 {
    font-size: 1.15rem;
  }

  .preview-card p {
    font-size: 0.93rem;
  }
}
/* FAQ ITEM */
.faq-item {
  margin-bottom: 1rem;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* FAQ HEADER */
.faq-header {
  padding: 1.4rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #1a202c;
  transition: background 0.3s ease;
  min-height: 3.2rem;
}

.faq-header:hover {
  background: rgba(0,184,204,0.05);
}

.faq-header span {
  flex: 1;
  display: inline-block;
  word-break: break-word;
}

/* ICON */
.faq-icon {
  transition: transform 0.3s ease;
  color: #00b8cc;
}

/* FAQ BODY */
.faq-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1.5rem;
  background: rgba(255,255,255,0.96);
  transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
}

.faq-body .faq-content {
  margin: 0;
  color: #4a5568;
  line-height: 1.8;
  padding-top: 0.75rem;
}

.faq-item.open .faq-body {
  max-height: 800px;
  opacity: 1;
  padding: 0 1.5rem 1.5rem;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}
/* ================================= */
/* FAQ SEARCH */
/* ================================= */

.faq-search {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #dcdcdc !important;
  backdrop-filter: none !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-search::placeholder {
  color: #555555 !important;
}

.faq-search:focus {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #00b8cc !important;
  box-shadow: 0 0 0 4px rgba(0, 184, 204, 0.15);
}

/* FAQ RESPONSIVE */
@media (max-width: 992px) {
  .faq-header {
    padding: 1.35rem 1.4rem;
  }

  .faq-header span {
    font-size: 1rem;
  }

  .faq-body {
    padding: 0 1.4rem;
  }

  .faq-item.open .faq-body {
    padding-bottom: 1.3rem;
  }

  .faq-body .faq-content {
    font-size: 0.98rem;
  }
}

@media (max-width: 768px) {
  .faq-header {
    padding: 1.2rem 1.3rem;
  }

  .faq-header span {
    font-size: 0.98rem;
  }

  .faq-body {
    padding: 0 1.3rem;
  }

  .faq-item.open .faq-body {
    padding-bottom: 1.2rem;
  }

  .faq-body .faq-content {
    font-size: 0.96rem;
  }
}

/* ================================= */
/* FORM */
/* ================================= */

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
}

/* ================================= */
/* FOOTER */
/* ================================= */

footer {
  background: var(--primary-light);
  padding: 4rem 5% 2rem;
  border-top: 1px solid var(--card-border);
  width: 100%;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 100px;
  width: auto;
}

.footer-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  background: var(--accent);
  color: #000;
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: var(--text-muted);
  transition: 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
  color: var(--text-muted);
}

.contact-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  padding: 20px;
}

.contact-popup.active {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 50px 35px 35px 35px;
  position: relative;
  animation: popupAnimation 0.4s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

@keyframes popupAnimation {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 10000;
}

.close-popup:hover {
  background: #00e5ff;
  color: #000;
  transform: rotate(90deg);
}

.popup-header {
  text-align: center;
  margin-bottom: 30px;
}

.popup-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e5ff, #0056b3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  box-shadow: 0 10px 30px rgba(0,229,255,0.35);
}

.popup-header h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 10px;
}

.popup-header p {
  color: rgba(255,255,255,0.7);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.detail-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255,255,255,0.06);
  padding: 18px;
  border-radius: 18px;
  transition: 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-4px);
  background: rgba(0,229,255,0.08);
}

.detail-card i {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #00e5ff, #0056b3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.detail-card span {
  display: block;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.detail-card h4 {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  word-break: break-word;
}

@media(max-width: 600px){

  .popup-box{
    max-width: 90vw;
    padding: 45px 20px 25px 20px;
  }

  .popup-header h2{
    font-size: 1.6rem;
  }

  .popup-icon {
    width: 75px;
    height: 75px;
    font-size: 2.5rem;
    margin: 0 auto 15px;
  }

  .popup-header {
    margin-bottom: 20px;
  }

  .popup-header p {
    font-size: 0.9rem;
  }

  .detail-card{
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
  }

  .detail-card i {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .contact-details {
    gap: 12px;
  }

}

@media(max-width: 768px) and (min-width: 601px){

  .popup-box{
    max-width: 95vw;
    padding: 48px 30px 30px 30px;
  }

  .popup-header h2{
    font-size: 1.8rem;
  }

  .popup-icon {
    width: 80px;
    height: 80px;
    font-size: 2.8rem;
  }

}

/* ================================= */
/* FAQ SEARCH */
/* ================================= */

.faq-search {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #dcdcdc !important;
  backdrop-filter: none !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-search::placeholder {
  color: #555555 !important;
}

.faq-search:focus {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #00b8cc !important;
  box-shadow: 0 0 0 4px rgba(0, 184, 204, 0.15);
}

/* ================================= */
/* LARGE TABLET */
/* ================================= */

@media (max-width: 1200px) {

  .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-title {
    font-size: 3rem;
  }
}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width: 992px) {

  .navbar {
    padding: 1rem 4%;
  }

  .logo-img {
    height: 78px;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 9rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-title {
    font-size: 2.7rem;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .glass-card,
  .premium-glass-card {
    padding: 1.8rem;
  }
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 768px) {

  section {
    padding: 4rem 4%;
  }

  .navbar {
    padding: 0.8rem 4%;
  }

  .logo-container {
    gap: 0.6rem;
  }

  .logo-img {
    height: 62px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .nav-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
    z-index: 1100;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 82px);
    background: rgba(227, 228, 233, 0.98);
    backdrop-filter: blur(18px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    transition: 0.4s ease;
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 4rem;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
    line-height: 1.4;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .features-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .features-grid {
    gap: 1.5rem;
  }

  .premium-glass-card,
  .glass-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .feature-icon-wrap {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .feature-title {
    font-size: 1.2rem;
  }

  .feature-desc {
    font-size: 0.95rem;
    min-height: auto;
  }

  .footer-logo img {
    height: 85px;
  }

  .footer-top {
    gap: 2rem;
  }

  .footer-links h4 {
    margin-bottom: 1rem;
  }

  .faq-header {
    padding: 1.2rem;
    font-size: 0.95rem;
  }

  .faq-body {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
}

/* ================================= */
/* SMALL MOBILE */
/* ================================= */

@media (max-width: 480px) {

  .logo-img {
    height: 55px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .premium-glass-card,
  .glass-card {
    padding: 1.3rem;
  }

  .feature-icon-wrap {
    width: 62px;
    height: 62px;
    font-size: 1.5rem;
  }

  .footer-logo img {
    height: 75px;
  }

  .nav-links {
    top: 74px;
    height: calc(100vh - 74px);
  }
}