:root {
  --orange: #f47c20;
  --dark: #1f2a44;
  --light: #ffffff;
  --gray: #f5f6f8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.header {
  padding: 1.5rem;
  height: 150px;
}
.header-logo-WOW {
    height: 125px;
    margin-left: -350px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.2rem;
}

.logo-wow {
  color: var(--orange);
}

.logo-text {
  color: var(--dark);
}

/* Decorative Background */
.bg-decoration {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: fadeInBlob 1.5s forwards;
  transform: translate(50%, -50%);
}

.bg-blob-1 {
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: var(--orange);
  transform: translate(50%, -50%);
}

.bg-blob-2 {
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: var(--dark);
  animation-delay: 0.2s;
  transform: translate(-50%, 50%);
}

.bg-blob-3 {
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: var(--orange);
  animation-delay: 0.4s;
  transform: translate(-50%, -50%);
}

@keyframes fadeInBlob {
  to {
    opacity: 0.05;
    transform: translate(-50%, -50%);
  }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero {
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
  background-color: #e56d10;
  /* background-image:  repeating-radial-gradient( circle at 0 0, transparent 0, #ffffff 40px ), repeating-linear-gradient( #FF651155, #FF6511 ); */

}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  opacity: 1;
  animation: fadeInUp 0.8s forwards;
}

.hero h1 .highlight {
  color: var(--light);
}

.hero p {
  font-size: 1.25rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  opacity: 1;
  animation: fadeInUp 0.8s 0.2s forwards;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-start;
  opacity: 1;
  animation: fadeInUp 0.8s 0.4s forwards;
  align-items: flex-start;
  margin-top: 1rem;
}

/* Layout & media for hero: two-column on wide screens */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-content {
  flex: 1 1 55%;
  max-width: 760px;
  margin: 0;
  text-align: left;
  position: relative;
  z-index: 4;
  transform: translateX(136px);
  transition: transform 320ms ease;
}

.hero-media {
  flex: 0 0 50%;
  max-width: 760px;
  position: relative;
  z-index: 4;
  /* start slightly shifted left and down + hidden; animated to final position */
  transform: translateX(-48px) translateY(30px);
  opacity: 0;
  transition: transform 520ms cubic-bezier(.2,.9,.2,1), opacity 520ms cubic-bezier(.2,.9,.2,1);
}

.hero-media img {
  width: 105%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 26px 80px rgba(31,42,68,0.45);
  object-fit: cover;
  transform: translateX(-6%);
  transition: transform 520ms cubic-bezier(.2,.9,.2,1), box-shadow 400ms ease;
}

/* animate state applied by JS observer (adds `animate` class) */
.hero-media.animate {
  transform: translateX(-48px) translateY(0);
  opacity: 1;
}

.hero-media.animate img {
  transform: translateX(-6%) translateY(0) scale(1);
  box-shadow: 0 30px 100px rgba(31,42,68,0.48);
}

/* Readability tweaks for orange hero background */
.hero h1 { color: var(--light); line-height: 1.05; }
.hero h1 .highlight { color: rgba(255,255,255,0.95); }
.hero p { color: rgba(255,255,255,0.95); max-width: 720px; }

/* Buttons on hero */
.hero .btn-primary { background: var(--light); color: var(--orange); }
.hero .btn-primary:hover { background: #ffffffcc; transform: translateY(-2px); }
.hero .btn-secondary { background: transparent; color: var(--light); border-color: rgba(255,255,255,0.6); }
.hero .btn-secondary:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); }

@media (max-width: 900px) {
  .hero { display: block; padding: 3.25rem 1rem; text-align: center; }
  /* Reset any desktop transforms so content stacks naturally */
  .hero-content { text-align: center; transform: none; padding: 0 0.5rem; }
  
  .hero-media 
  { 
    margin-top: 1.5rem; 
    max-width: 100%; 
    transform: none; 
    opacity: 1; 
  }

  .hero-media 
  { 
    margin-top: 1.5rem; 
    max-width: 100%; 
    transform: none; 
    opacity: 1; 
    margin-left: auto; 
    margin-right: auto; 
    padding: 0 1rem; 
    box-sizing: 
    border-box; 
  }

  .hero-media img 
  { 
    border-radius: 12px; 
    width: 100%; 
    transform: none; 
    display: block; 
    margin: 0 auto; 
  }
  .hero h1 
  { 
    font-size: 1.75rem; 
    line-height: 1.1; 
  }
  .hero p 
  { 
    font-size: 1rem; 
    margin-bottom: 1rem; 
  }

  .hero-buttons 
  { 
    align-items: center; 
    justify-content: center; 
    width: 100%; 
  }
  .hero .btn 
  { 
    width: 90%; 
    max-width: 360px; 
  }

  .hero .circles { display: none; }
}

@media (max-width: 430px) {
  .hero { padding: 2.25rem 0.75rem; }
  .hero h1 { font-size: 1.5rem; }
  .hero p { font-size: 0.95rem; }
  .hero .btn { width: 100%; padding: 0.85rem 1rem; }
  .hero-media img { transform: translateX(12%); }
}

@media (min-width: 1200px) {
  .hero-media { transform: translateX(-80px); }
  .hero-media img { transform: translateX(12%); }
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.125rem;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--light);
}

.btn-primary:hover {
  background: #e56d10;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--light);
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn-secondary:hover {
  background: var(--gray);
  transform: translateY(-2px);
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 8rem 1rem;
  }
  .hero h1 {
    font-size: 4.5rem;
  }
}

/* Sections */
section {
  padding: 5rem 1rem;
  position: relative;
}

.section-gray {
  background: var(--gray);
}

.section-dark {
background: #1F2A44;
background: -moz-linear-gradient(left, #1F2A44 0%, #155077 50%, #1F2A44 100%);
background: -webkit-linear-gradient(left, #1F2A44 0%, #155077 50%, #1F2A44 100%);
background: linear-gradient(to right, #1F2A44 0%, #155077 50%, #1F2A44 100%);
color: var(--light);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--orange);
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-description {
  font-size: 1.125rem;
  max-width: 1000px;
  margin: 0 auto 4rem;
  text-align: center;
  line-height: 1.6;
}

@media (min-width: 768px) {
  h2 {
    font-size: 3rem;
  }
}

/* Grid Cards */
.grid {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-2 {
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: var(--light);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.card.animate {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: rgba(244, 124, 32, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--orange);
}

.card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--orange);
  margin-bottom: 1rem;
}

.card p {
  line-height: 1.6;
  color: var(--dark);
}

/* Number Cards */
.number-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--gray);
  border-radius: 12px;
  opacity: 0;
  transform: translateX(-30px);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.number-card.animate {
  opacity: 1;
  transform: translateX(0);
}

.number-card:nth-child(even) {
  transform: translateX(30px);
}

.number-card:nth-child(even).animate {
  transform: translateX(0);
}

.number-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 1.25rem;
  font-weight: bold;
}

.number-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.number-card p {
  line-height: 1.6;
  color: var(--dark);
}

/* Feature Cards Dark */
.feature-card {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.feature-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--light);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.feature-card p {
  line-height: 1.6;
}

/* FAQ */
.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid var(--gray);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.faq-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--gray);
}

.faq-question span {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--dark);
  padding-right: 1rem;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--orange);
  transition: transform 0.3s;
}

.faq-icon.active {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  line-height: 1.6;
  color: var(--dark);
}

/* Info */
.info {
  background-color: var(--gray);
  padding: 4rem 0;
}

.info-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.info-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 8px;
}

.info-card h2 {
  color: var(--orange);
  margin-bottom: 0.5rem;
}

/* Coming soon */
.coming-soon {
  padding: 4rem 0;
  text-align: center;
}

.coming-soon h2 {
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
      font-size: 2rem;
  }
}

.hero .circles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}
.hero .circles li{
  position: absolute;
  display: block;
  list-style: none;
  background: rgba(255,255,255,0.08);
  animation: animateUp 20s linear infinite;
  bottom: -150px;
  opacity: 0.9;
}
.hero .circles li:nth-child(1){ left:25%; width:80px; height:80px; animation-delay:0s }
.hero .circles li:nth-child(2){ left:10%; width:20px; height:20px; animation-delay:2s; animation-duration:12s }
.hero .circles li:nth-child(3){ left:70%; width:20px; height:20px; animation-delay:4s }
.hero .circles li:nth-child(4){ left:40%; width:60px; height:60px; animation-delay:0s; animation-duration:18s }
.hero .circles li:nth-child(5){ left:65%; width:20px; height:20px; animation-delay:0s }
.hero .circles li:nth-child(6){ left:75%; width:110px; height:110px; animation-delay:3s }
.hero .circles li:nth-child(7){ left:35%; width:150px; height:150px; animation-delay:7s }
.hero .circles li:nth-child(8){ left:50%; width:25px; height:25px; animation-delay:15s; animation-duration:45s }
.hero .circles li:nth-child(9){ left:20%; width:15px; height:15px; animation-delay:2s; animation-duration:35s }
.hero .circles li:nth-child(10){ left:85%; width:150px; height:150px; animation-delay:0s; animation-duration:11s }
.hero .circles li:nth-child(11){ left:90%; width:25px; height:25px; animation-delay:5s; animation-duration:25s }
.hero .circles li:nth-child(12){ left:60%; width:80px; height:80px; animation-delay:8s; animation-duration:40s }
.hero .circles li:nth-child(13){ left:30%; width:110px; height:110px; animation-delay:3s; animation-duration:20s }
.hero .circles li:nth-child(14){ left:45%; width:40px; height:40px; animation-delay:12s; animation-duration:30s }
.hero .circles li:nth-child(15){ left:80%; width:90px; height:90px; animation-delay:6s; animation-duration:50s }

@keyframes animateUp {
  0%{
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100%{
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}


/* Small embedded button when included in other pages */
.embed-button {
  display: block;
  margin: 2rem auto;
  width: 100%;
  max-width: 360px;
  text-align: center;
}
.embed-button .open-contact {
  display: inline-block;
  background: var(--orange);
  color: var(--light);
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(244,124,32,0.12);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.embed-button .open-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(244,124,32,0.16);
}

/* Global responsive helpers - make common elements mobile-friendly */
img, picture, video, svg { max-width: 100%; height: auto; display: block; }

/* Reduce heading sizes on small screens for better fit */
@media (max-width: 720px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .container { padding: 0 1rem; }
  .btn { width: 100%; display: inline-block; box-sizing: border-box; }
}

/* Stack any inline-flex groups on narrow screens */
@media (max-width: 480px) {
  .grid, .grid-2, .grid-3 { grid-template-columns: 1fr !important; }
  .hero-buttons { width: 100%; gap: 0.75rem; }
  .hero .btn { width: 100%; }
}

/* Ensure forms are full-width on small screens */
@media (max-width: 720px) {
  form .input_field, textarea.input_field, .input_field_description { width: 100% !important; }
  .form-row { flex-direction: column; }
}

