/* ===== RESET & VARIABLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --deep-blue: #0a2540;
  --brand: #0057ff;
  --brand-light: #e6f0ff;
  --text-dark: #1a2e3f;
  --text-muted: #4f5e71;
  --bg-soft: #f9fcff;
  --border-light: #dde7f0;
  --shadow: 0 20px 35px -8px rgba(0,87,255,0.08), 0 8px 16px -6px rgba(0,0,0,0.02);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: white;
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 8vw, 4.2rem);
}

h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 0.5rem;
}

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

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

/* ===== SECTION SPACING (removed extra gaps) ===== */
section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;  /* reduced from 3.5rem to 3rem */
  }
}

/* ===== HERO SECTION (FULL COVER, NO CUT) ===== */
.hero {
  background: linear-gradient(135deg, #001a4d, #1e3a8a);
  position: relative;
  overflow: hidden;
  min-height: 100vh;           /* full viewport height */
  width: 100%;
  display: flex;
  align-items: center;
  color: white;
  isolation: isolate;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #001a4d, #1e3a8a);
  opacity: 0.92;
  z-index: -1;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 24px;           /* increased vertical padding for desktop */
  width: 100%;
}

/* DESKTOP: bolder hero text */
.hero h1 {
  font-size: clamp(2.8rem, 9vw, 4.5rem); /* slightly larger base */
  font-weight: 800;              /* extra bold */
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: white;
  line-height: 1.2;
  word-break: break-word;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero p {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  font-weight: 500;              /* medium weight for better visibility */
  color: white;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  padding: 0 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Hero list (Google Ads, Meta Ads, etc) */
.hero-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  list-style: none;
  margin: 0 auto;
  max-width: 1000px;
}

.hero-list li {
  background: rgba(255,255,255,0.12);  /* slightly brighter for contrast */
  backdrop-filter: blur(4px);
  padding: 0.8rem 2.2rem;
  border-radius: 60px;
  border: 1px solid rgba(255,255,255,0.25);
  font-weight: 600;
  font-size: 1.2rem;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ===== MOBILE FIXES FOR HERO (no cutting) ===== */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;           /* keep full height */
    align-items: flex-start;     /* align to top to prevent cutting */
    padding-top: 20px;           /* additional safe space */
  }

  .hero .container {
    padding: 6rem 20px 4rem;      /* top padding increased to avoid cut */
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
    margin-bottom: 1.2rem;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  /* Hero list: 2 columns on mobile (2-dimensional) */
  .hero-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-list li {
    width: 100%;
    padding: 0.7rem 0.5rem;
    font-size: 1rem;
    white-space: normal;
    text-align: center;
    word-break: keep-all;
  }
}

/* small screens below 400px - ensure 2 columns even on very small */
@media (max-width: 480px) {
  .hero-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  
  .hero-list li {
    font-size: 0.9rem;
    padding: 0.6rem 0.2rem;
  }
}

/* ===== BREADCRUMB: SINGLE ROW ON MOBILE ===== */
.breadcrumb-wrapper {
  background: var(--bg-soft);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb {
  display: flex;
  flex-wrap: nowrap;             /* force single line */
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.95rem;
  overflow-x: auto;              /* allows scroll if needed, but stays row */
  white-space: nowrap;
  padding: 4px 0 6px;            /* extra bottom padding for scrollbar */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

/* hide scrollbar on mobile for cleaner look (still functional) */
.breadcrumb::-webkit-scrollbar {
  display: none;
}

.breadcrumb-item a {
  color: var(--brand);
  font-weight: 500;
}

.breadcrumb-item.active {
  color: var(--text-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding-right: 8px;
  color: var(--text-muted);
}

/* ===== SECTION 2: BULLETS GRID (no extra spacing) ===== */
.service-bullets {
  background: var(--bg-soft);
}

.bullets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2.5rem 0 1.5rem;
}

.bullet-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: white;
  padding: 1.8rem 2rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

.bullet-icon {
  background: var(--brand-light);
  width: 48px;
  height: 48px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bullet-icon i {
  font-size: 1.8rem;
  color: var(--brand);
}

.bullet-text b {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--deep-blue);
}

.bullet-text {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .bullets-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .bullet-item {
    padding: 1.5rem;
  }
}

/* ===== PARTNER BOX ===== */
.partner-box {
  background: white;
  border-radius: 42px;
  box-shadow: var(--shadow);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  border: 1px solid var(--border-light);
  margin-top: 1rem;
}

.partner-text p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.partner-stats {
  display: flex;
  gap: 2.5rem;
}

.stat h4 {
  font-size: 2.8rem;
  color: var(--brand);
}

.stat p {
  font-weight: 600;
}

.partner-image img {
  border-radius: 32px;
  width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .partner-box {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }
  
  .partner-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .partner-box {
    padding: 2rem;
    gap: 2rem;
  }
  
  .stat h4 {
    font-size: 2.2rem;
  }
}

/* ===== CTA GRADIENT ===== */
.cta-gradient-box {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  border-radius: 32px;
  padding: 60px 45px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  color: white;
  box-shadow: 0 20px 30px rgba(0,0,0,0.2);
  margin: 40px 0;
}

.cta-gradient-box h2 {
  font-size: 2.2rem;
  color: white !important;
}

.cta-gradient-box p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.95);
}

.cta-buttons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: white;
  color: #000;
  padding: 18px 44px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  border: none;
  transition: 0.2s;
}

.cta-btn i {
  font-size: 1.4rem;
}

.cta-btn.wa {
  background: #25D366;
  color: white;
}

@media (max-width: 768px) {
  .cta-gradient-box {
    padding: 40px 25px;
    gap: 25px;
  }
  
  .cta-buttons-row {
    flex-direction: column;
  }
  
  .cta-btn {
    justify-content: center;
    padding: 16px 30px;
  }
}

/* ===== CONTACT FORM ===== */
.contact-merged-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.contact-image-side {
  min-height: 600px;
}

.contact-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-side {
  display: flex;
  align-items: center;
  padding: 60px 50px;
  background: white;
}

.contact-form-card {
  width: 100%;
}

.contact-form-card h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.contact-form-card .sub {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: 22px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 22px;
  border: 2px solid var(--border-light);
  border-radius: 14px;
  font-size: 1.1rem;
  background: white;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  padding: 18px 20px;
  border: none;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(30,64,175,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.privacy-note {
  margin-top: 25px;
  font-size: 1rem;
  color: var(--text-muted);
}

.privacy-note i {
  margin-right: 6px;
}

@media (max-width: 768px) {
  .contact-merged-box {
    grid-template-columns: 1fr;
  }
  
  .contact-image-side {
    min-height: 300px;
  }
  
  .contact-form-side {
    padding: 40px 25px;
  }
  
  .contact-form-card h2 {
    font-size: 1.8rem;
  }
}

/* ===== FOOTER CREDIT ===== */
.footer-credit {
  padding: 1rem 0 2rem;
  text-align: center;
  color: #aaa;
  font-size: 0.95rem;
}

/* ===== REMOVE EXTRA GAPS (global adjustments) ===== */
/* ensure no unwanted margins */
h1, h2, h3, p, ul, ol {
  margin: 0;
}

/* reduce gap between sections on mobile */
@media (max-width: 768px) {
  .service-bullets,
  .scalable-growth-partner,
  .contact-section {
    padding: 2.5rem 0;  /* consistent reduced spacing */
  }
  
  .container {
    padding: 0 20px;
  }
}