/* ===========================================
   SUPER IMPRESSIVE SERVICE CSS – LIGHT MODE ONLY
   =========================================== */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* Light Theme Variables Only */
:root {
  /* Brand Gradient */
  --gradient: linear-gradient(90deg, #ff6a00, #ff2d55); /* orange to pink */

  /* Core Colors */
  --primary-orange: #ff6a00;  /* strong orange */
  --primary-pink: #ff2d55;    /* strong pink */
  --white: #ffffff;
  --black: #000000;
  --dark-gray: #1e1e1e;
  --text-gray: #4a4a4a;

  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-light: #f8f8f8;
  --bg-footer: #1a1a1a;

  /* Footer & Accent Colors */
  --footer-bg: #1a1a1a;
  --footer-text: #f1f1f1;
  --footer-link: #d0d0d0;
  --accent: #ff2d55;
  --accent-light: #ff6a00;
  --social-bg: #262626;

  /* Shadows and Effects */
  --card-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  --circle-gradient: radial-gradient(circle at center, #ffc0cb, #ffa07a); /* soft pink-orange */

  /* Fonts */
  --ff-primary: 'Poppins', sans-serif;

  /* Font Sizes */
  --fs-xl: 3rem;
  --fs-lg: 2rem;
  --fs-md: 1.2rem;
  --fs-sm: 1rem;

  /* Border Radius */
  --radius: 16px;

  /* Transitions */
  --transition: 0.3s ease;
}


body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

.container {
  max-width: 1250px;
  padding: 60px 30px;
  margin: auto;
}

/* HEADER */
header.header {
  background: linear-gradient(120deg, var(--accent), var(--accent-light));
  padding: 100px 30px;
  text-align: center;
  color: #fff;
  border-radius: 0 0 80px 80px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
  animation: slideInTop 1s ease;
}

.header h1 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 15px;
  animation: fadeUp 1.4s ease;
}

.header .subtitle {
  font-size: 20px;
  max-width: 900px;
  margin: auto;
  opacity: 0.95;
  line-height: 1.6;
  animation: fadeUp 1.7s ease;
}

/* SECTION */
.section {
  margin-top: 60px;
}

.section h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  position: relative;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 5px;
  background: linear-gradient(to right, var(--accent), var(--accent-light));
  margin-top: 12px;
  border-radius: 5px;
  animation: lineSlide 1s ease;
}

/* INDUSTRY GRID */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.industry-grid span {
  background: var(--bg-secondary);
  padding: 22px;
  border-radius: 18px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 17px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.industry-grid span::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(242, 101, 34, 0.05);
  z-index: -1;
  transition: 0.4s;
}

.industry-grid span:hover {
  transform: scale(1.05);
  color: var(--accent);
}

.industry-grid span:hover::before {
  width: 100%;
}

/* FEATURES */
ul.features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

ul.features li {
  font-size: 18px;
  color: var(--text-secondary);
  padding: 12px 0 12px 28px;
  position: relative;
  border-left: 3px solid var(--accent);
  margin-bottom: 15px;
  background: var(--feature-bg);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

ul.features li::before {
  content: "✓";
  position: absolute;
  left: 8px;
  color: var(--accent);
  font-weight: bold;
}

/* CTA */
.cta {
  background: var(--card);
  padding: 70px 30px;
  text-align: center;
  border-radius: 25px;
  margin-top: 70px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  animation: zoomIn 1.2s ease;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--accent);
  font-weight: 800;
}

.cta p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 800px;
  margin: auto;
  margin-bottom: 30px;
}

.cta .btn, .btn-secondary {
  padding: 15px 35px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin: 10px;
  transition: all 0.3s ease;
}

.btn {
  background: linear-gradient(to right, var(--accent), var(--accent-light));
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.btn:hover {
  transform: translateY(-4px) scale(1.03);
  background: linear-gradient(to right, var(--accent-light), var(--accent));
}

.btn-secondary {
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
}

/* QUOTE */
blockquote {
  background: var(--blockquote-bg);
  border-left: 6px solid var(--accent-light);
  padding: 30px;
  font-size: 18px;
  font-style: italic;
  border-radius: 10px;
  color: var(--text-secondary);
  margin-top: 50px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  animation: fadeIn 1.3s ease;
}

/* FOOTER */
.footer {
  background: var(--footer-bg);
  padding: 90px 20px 50px;
  margin-top: 100px;
  border-top: 1px solid #333;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  border-radius: 80px 80px 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--footer-text);
}

.footer::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--accent), var(--accent-light));
  border-radius: 0 0 80px 80px;
  z-index: -1;
}

.footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  font-size: 26px;
  font-weight: bold;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-brand .logo:hover {
  color: var(--accent-light);
}

.footer-text {
  margin-top: 12px;
  font-size: 15px;
  color: var(--footer-link);
  line-height: 1.8;
}

.footer-list-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 12px;
}

.footer-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-link {
  display: inline-block;
  font-size: 15px;
  color: var(--footer-link);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.footer-link::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-link:hover::after {
  width: 100%;
}

.social-list {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}

.social-link {
  font-size: 18px;
  color: var(--accent);
  background: var(--social-bg);
  padding: 12px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(246, 193, 119, 0.15);
}

.social-link ion-icon {
  font-size: 22px;
}

.social-link:hover {
  background: var(--accent);
  color: #1a1a1a;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(246, 193, 119, 0.3);
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  padding-top: 25px;
  border-top: 1px solid #333;
}
