/* ======================================= */
/* style.css - custom styles + small utilities for futuristic look */
/* ======================================= */

/* Use Inter font from Google included in index.html */
:root {
  --glass: rgba(255,255,255,0.06);
  --glass-2: rgba(255,255,255,0.04);
  --accent-1: rgba(255,201,71,1);
  --accent-2: rgba(255,122,41,1);
  --text-light: #f1f5f9;
  --text-muted: #bfcbdc;
  --border-color: rgba(255,255,255,0.08);
  --radius: 12px;
  --transition: 0.25s ease;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

html, body { height: 100%; }
body {
  line-height: 1.45;
  background-color: #0f172a;
  color: var(--text-light);
  font-family: var(--font-body);
}

/* === Futuristic heading === */
.futuristic-heading {
  background: linear-gradient(90deg, #fff 0%, #ffd366 40%, #9be7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.6));
  letter-spacing: -0.02em;
}

/* === Nav links === */
.nav-link {
  color: rgba(255,255,255,0.8);
  transition: color .18s, transform .18s;
}
.nav-link:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* === CTA styles === */
.cta-btn {
  padding: .7rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
}

.gradient-cta {
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  color: #000;
  transform: translateZ(0);
  animation: neonPulse 4s ease-in-out infinite;
}

.cta-outline {
  padding: .65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--glass);
  color: #e6eef8;
  text-decoration: none;
}

/* === Stat / Service / Contact Cards === */
.stat-card,
.service-card,
.contact-card,
.feature,
.adv,
.quote-card {
  background: linear-gradient(180deg, var(--glass-2), var(--glass));
  border: 1px solid var(--glass);
  border-radius: 1rem;
  backdrop-filter: blur(6px);
  padding: 1rem;
}

.service-icon { font-size: 1.5rem; margin-bottom: .5rem; }

.contact-card { display: flex; gap: 1rem; }
.contact-card .icon { font-size: 1.4rem; }

/* === Visual cards === */
.card-visual {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}
.glass-card {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--glass);
  box-shadow: 0 10px 40px rgba(2,6,23,0.7);
  transform: perspective(1000px) rotateY(-6deg) translateY(-8px);
}
.visual-photo {
  height: 320px;
  background-size: cover;
  background-position: center;
  filter: saturate(105%) contrast(1.02);
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), transparent);
}

/* === Floating Tag === */
.floating-tag {
  position: absolute;
  left: -40px;
  bottom: -40px;
  padding: .8rem 1rem;
  border-radius: .9rem;
  background: linear-gradient(180deg, var(--glass-2), var(--glass));
  border: 1px solid rgba(255,255,255,0.05);
  width: 160px;
  transform-origin: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}
.tag-title { font-weight: 700; font-size: 0.85rem; color: #fff; }
.tag-sub { font-size: 0.75rem; color: var(--text-muted); }

/* === Input fields === */
.input-field {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  padding: .8rem .9rem;
  border-radius: .9rem;
  outline: none;
  color: #fff;
  transition: border-color 0.3s ease;
}
.input-field:focus {
  border-color: #ffd366;
  outline: none;
}

/* === Floating motion / neon === */
@keyframes neonPulse {
  0% { box-shadow: 0 0 0 rgba(255,195,50,0.0); }
  50% { box-shadow: 0 0 30px rgba(255,195,50,0.06); transform: translateY(-2px); }
  100% { box-shadow: 0 0 0 rgba(255,195,50,0.0); transform: translateY(0); }
}

.floating { transform: translateY(0); }

/* === Responsive visuals === */
@media (max-width: 768px){
  .glass-card { transform: none; }
  .floating-tag { left: 10px; bottom: -26px; width: 140px; }
}

/* ======================================= */
/* === CSCA Section + Aside Styling === */
/* ======================================= */

section#csca {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

section#csca h3 {
  color: var(--accent-1);
  margin-top: 2rem;
  font-size: 1.3rem;
}

section#csca p {
  margin: 0.75rem 0;
  color: var(--text-muted);
}

p.foot {
  font-size: 0.9rem;
  margin-top: 0.8rem;
  border-left: 3px solid var(--accent-1);
  padding-left: 0.6rem;
  font-style: italic;
  color: var(--text-muted);
}

strong { color: #fff; }
em { color: var(--accent-2); }

/* === CSCA Table === */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: var(--glass-2);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

thead {
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  color: #000;
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
}

th {
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

td {
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
}

tbody tr:hover {
  background-color: rgba(255,255,255,0.04);
  transition: var(--transition);
}

/* === Aside Card === */
.aside.card {
  background: var(--glass-2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
  max-width: 320px;
  color: var(--text-muted);
  backdrop-filter: blur(8px);
}

.aside h3, .aside h4 {
  color: var(--accent-1);
  margin-bottom: 0.5rem;
}

.aside ul { padding-left: 1.2rem; }
.aside li { margin-bottom: 0.4rem; }

.aside .pill {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  color: #000;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 0.4rem;
}

.aside .cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  color: #000;
  text-decoration: none;
  font-weight: 600;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  transition: var(--transition);
}
.aside .cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.aside .foot {
  font-size: 0.9rem;
  color: var(--text-muted);
  border-left: 3px solid var(--accent-1);
  padding-left: 0.6rem;
  margin-top: 1rem;
  font-style: italic;
}

/* === Badge === */
.badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  color: #000;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
}

/* === Responsive Layout === */
@media (min-width: 1024px) {
  #csca, .aside.card {
    display: inline-block;
    vertical-align: top;
  }

  section#csca {
    width: 65%;
    padding-right: 2rem;
  }

  .aside.card {
    width: 30%;
  }
}
/* WhatsApp link style */
.whatsapp-link {
  color: #25D366; /* WhatsApp green */
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.whatsapp-link:hover {
  color: #1ebe5d;
  transform: translateY(-1px);
}
/* Gold section titles */
h2 {
  color: #FFD700; /* classic gold */
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
  transition: text-shadow 0.3s ease, transform 0.3s ease;
}

/* subtle hover glow (optional) */
h2:hover {
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}
/* Gold section titles */
h3 {
  color: #FFD700; /* classic gold */
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
  transition: text-shadow 0.3s ease, transform 0.3s ease;
}

/* subtle hover glow (optional) */
h3:hover {
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}
/* Gold section titles */
h4 {
  color: #FFD700; /* classic gold */
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
  transition: text-shadow 0.3s ease, transform 0.3s ease;
}

/* subtle hover glow (optional) */
h4:hover {
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}
