/* ==========================================
   CUSTOMME.US — BLOOMFI FINTECH STYLE
   Based exactly on DISENO.jpeg & LOGO.jpeg
   ========================================== */

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

:root {
  --bg-main: #f5f5f7;
  --bg-card-light: #e6e8fa;
  --bg-card-dark: #2a2046;
  --text-dark: #1f1a30;
  --text-gray: #5e5e6e;
  --text-light: #ffffff;
  --border-radius: 30px;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ==================================================
   BUTTONS
   ================================================== */
.btn-dark {
  display: inline-block;
  background-color: var(--bg-card-dark);
  color: var(--text-light);
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s;
}
.btn-dark:hover { opacity: 0.85; }

.btn-small {
  padding: 10px 24px;
  font-size: 13px;
}

/* ==================================================
   NAVBAR
   ================================================== */
.header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}
.nav-logo img {
  height: 85px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 35px;
}
.nav-links a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  transition: color 0.3s;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.nav-links a:hover { color: #e0e0e0; }

/* ==================================================
   HERO
   ================================================== */
.hero {
  background-size: cover;
  background-position: center;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 110px;
  box-sizing: border-box;
  background-color: #0d0914; /* dark background for when image is smaller */
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* dark overlay */
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-top-icon {
  width: 24px; height: 24px;
  margin: 0 auto 20px;
}
.hero h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.hero p {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* ==================================================
   WHAT IS SECTION
   ================================================== */
.what-is {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}
.what-left {
  width: 40%;
}
.what-left h2 {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 20px;
}
.what-right {
  width: 45%;
  font-size: 20px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ==================================================
   CARDS GRID
   ================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 25px;
  margin-bottom: 100px;
}
.card {
  border-radius: var(--border-radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.3;
}
.card p {
  font-size: 14px;
  line-height: 1.6;
}

.card-wide {
  background-color: var(--bg-card-light);
  color: var(--text-dark);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px; /* Reset padding for image alignment */
  overflow: hidden;
}
.card-wide .card-content {
  width: 50%;
  padding: 40px 0;
}
.card-wide .card-image-wrap {
  width: 45%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.card-wide img {
  max-width: 130%;
  height: auto;
  transform: translateY(20px) translateX(20px);
}

.card-dark {
  background-color: var(--bg-card-dark);
  color: var(--text-light);
}
.card-dark p {
  color: #a39eb5; /* lighter purple-gray for text */
  margin-top: auto;
}

/* ==================================================
   TRUSTED BY
   ================================================== */
.trusted {
  display: flex;
  align-items: center;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 40px 0;
  margin-bottom: 100px;
}
.trusted-text {
  width: 25%;
  font-size: 12px;
  color: var(--text-gray);
}
.trusted-logos {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #999;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

/* ==================================================
   USE CASES
   ================================================== */
.use-cases {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
.uc-left {
  width: 30%;
}
.uc-label {
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 15px;
  display: block;
}
.uc-left h2 {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 20px;
}
.uc-left p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
}

.uc-right {
  width: 60%;
}
.uc-card {
  background-color: #ffffff;
  border-radius: var(--border-radius);
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}
.uc-card-text {
  width: 45%;
}
.uc-card-text h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}
.uc-card-text p {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 30px;
}
.uc-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}
.uc-card-image {
  width: 50%;
}
.uc-card-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* ==================================================
   SERVICES NEW STYLES
   ================================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 42px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}
.section-header p {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 100px;
}

.service-card {
  background-color: #ffffff;
  color: var(--text-dark);
  padding: 30px;
  justify-content: flex-start;
  transition: transform 0.3s ease;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.service-slider {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 25px;
}
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider-wrapper .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.slider-wrapper .slide.active {
  opacity: 1;
}
.slider-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
  font-size: 16px;
  transition: background-color 0.3s;
  z-index: 2;
}
.slider-btn:hover {
  background-color: rgba(0,0,0,0.8);
}
.slider-btn.prev {
  left: 10px;
}
.slider-btn.next {
  right: 10px;
}
.service-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.service-list {
  list-style: none;
  margin-bottom: 30px;
}
.service-list li {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}
.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fca311;
  font-weight: bold;
}
.btn-service {
  text-align: center;
  background-color: var(--bg-card-dark);
  color: #ffffff;
  width: 100%;
  box-sizing: border-box;
}
.btn-service:hover {
  opacity: 0.85;
}

/* OUR PROCESS SECTION */
.process-section {
  padding: 100px 5%;
  background-color: #f8f9fa; /* Light gray background to separate from white sections */
  color: var(--text-dark);
}
.process-section .section-header h2 {
  color: var(--text-dark);
}
.process-section .section-header p {
  color: var(--text-gray);
}
.process-timeline {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.process-step {
  display: flex;
  align-items: center;
  gap: 50px;
}
.process-step.reverse {
  flex-direction: row-reverse;
}
.process-content {
  flex: 1;
  min-width: 0;
  width: 50%;
}
.process-media {
  flex: 1;
  min-width: 0;
  width: 50%;
}
.step-number {
  font-size: 60px;
  font-weight: 800;
  color: #fca311;
  opacity: 0.8;
  margin-bottom: 10px;
  line-height: 1;
}
.process-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
}
.process-content p {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.6;
}
.media-placeholder {
  width: 100%;
  height: 460px;
  background-color: #ffffff;
  border: 2px dashed #d1d1d1;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 18px;
  text-align: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.media-placeholder img, 
.media-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.process-slider {
  width: 100%;
  height: 460px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.process-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.process-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.digital-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.df-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.df-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.df-item span {
  font-size: 14px;
  color: var(--text-gray);
}
