/* ========================================
   GLOBAL STYLES - ALL PAGES
   Brand Colors: #000f2b, #c9f31d, #FFD700
======================================== */

:root {
    --themebg: #000f2b;
    --primary: #ff7e00;
    --gold: #FFD700;
    --white: #FFFFFF;
    --gray-bg: #f6f6f6;
    --gray-light: #f0f0f0;
    --text-dark: #1d1d1d;
    --text-body: #555555;
    --text-light: #666666;
    --text-white: #FFFFFF;
    --text-white-soft: #efefef;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

/* ========== HEADER ========== */
.header {
    position: sticky;
    top: 0;
    background: #000f2b;
    box-shadow: 0 2px 15px rgba(0,15,43,0.08);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
  width: 150px;
  height: 50px;
  background-image: url("../img/logo.png");
  background-size: contain;      /* keeps full image */
  background-repeat: no-repeat;
  background-position: center;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a:not(.btn):hover {
    color: #ff7e00;
}

.nav-menu a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-menu a:not(.btn):hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: #ff7e00;
    font-weight: 600;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(201, 243, 29, 0.25);
}

.btn-primary:hover {
    /*background: #fff;*/
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 243, 29, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 26px;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--themebg);
}

.btn-white {
    background: var(--white);
    color: var(--themebg);
}

.btn-white:hover {
    background: var(--gray-light);
}

/* ========== SECTIONS ========== */
section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

h1 {
    font-size: 52px;
    font-weight: 900;
    color: var(--themebg);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

h2 {
    font-size: 46px;
    font-weight: 900;
    color: var(--themebg);
    margin-bottom: 18px;
    letter-spacing: -1px;
    line-height: 1.15;
}

h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--themebg);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 19px;
    color: var(--text-body);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== PAGE HERO ========== */
.page-hero {
    background: linear-gradient(135deg, var(--themebg) 0%, #011740 100%);
    color: var(--text-white);
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    color: var(--text-white);
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    color: var(--text-white-soft);
    max-width: 700px;
    margin: 0 auto;
}

.breadcrumb {
    color: var(--text-white-soft);
    font-size: 14px;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

/* ========== CARDS ========== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 14px;
    border: 2px solid var(--gray-bg);
    transition: all 0.3s;
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 243, 29, 0.2);
}

.card-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 14px;
}

.card p {
    color: var(--text-body);
    line-height: 1.7;
}

/* ========== STATS ========== */
.stats-section {
    background: var(--themebg);
    color: var(--text-white);
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
}

.stat-number {
    color: var(--gold);
    font-size: 68px;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    color: var(--text-white-soft);
    font-size: 18px;
}

.clients {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.client-box {
    width: 140px;
    height: 75px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-box img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: 0.3s ease;
}



/* ========== FOOTER ========== */
.footer {
    background: var(--themebg);
    color: var(--text-white-soft);
    padding: 80px 0 35px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 55px;
    margin-bottom: 55px;
}

.footer-column h4 {
    color: var(--text-white);
    margin-bottom: 28px;
    font-size: 19px;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column a {
    color: var(--text-white-soft);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 32px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* ========== WHATSAPP ========== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 68px;
    height: 68px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.15);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h1 { font-size: 42px; }
    h2 { font-size: 36px; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .card-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 36px; }
    h2 { font-size: 32px; }
    section { padding: 60px 0; }
}

/* ========== BACKGROUNDS ========== */
.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-bg); }

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.mt-50 { margin-top: 50px; }
.mb-50 { margin-bottom: 50px; }






 /* ── TAB STRIP ── */
  .tab-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin-bottom: 28px;
  }
  .tab-strip::-webkit-scrollbar { display: none; }

  .tab-card {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    background: #fff;
    border: 2px solid #e2ddd8;
    border-radius: 16px;
    padding: 24px 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    user-select: none;
  }

  .tab-card:hover {
    border-color: #d0cbc5;
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    /*transform: translateY(-2px);*/
  }

  .tab-card.active {
    border-color: #ff7e00;
    box-shadow: 0 6px 28px rgba(200,75,47,0.15);
    /*transform: translateY(-2px);*/
  }

  .tab-card .icon {
    font-size: 2.4rem;
    line-height: 1;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  }

  .tab-card:hover .icon,
  .tab-card.active .icon {
    transform: scale(1.12);
  }

  .tab-card .label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #6b6460;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.01em;
    transition: color 0.2s;
  }

  .tab-card.active .label {
    color: #ff7e00;
  }

  /* ── PANEL ── */
  .tab-panels {
    background: #fff;
    border: 1px solid #e2ddd8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.05);
  }

  .tab-panel {
    display: none;
    padding: 48px 52px;
    gap: 48px;
    align-items: center;
    animation: fadeUp 0.3s ease both;
  }

  .tab-panel.active {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .panel-tag {
    display: inline-block;
    background: #f5ece9;
    color: #ff7e00;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 14px;
  }

  .panel-content h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.9rem;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #1a1612;
  }

  .panel-content p {
    font-size: 0.96rem;
    line-height: 1.75;
    color: #6b6460;
    font-weight: 300;
    margin-bottom: 28px;
    max-width: 480px;
  }

  .feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .pill {
    padding: 6px 14px;
    background: var(--bg);
    border: 1px solid #e2ddd8;
    border-radius: 100px;
    font-size: 0.78rem;
    color: #1a1612;
    font-weight: 500;
  }

  .panel-visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .visual-bubble {
    width: 180px;
    height: 180px;
    background: #f5ece9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    animation: float 3.5s ease-in-out infinite;
    flex-shrink: 0;
  }

  @keyframes float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
  }

  /* ── CTA ── */
  .cta-row {
    display: flex;
    justify-content: center;
    margin-top: 36px;
  }

  @media (max-width: 680px) {
    .tab-card { min-width: 110px; padding: 18px 10px 16px; }
    .tab-panel.active { grid-template-columns: 1fr; padding: 28px 24px; }
    .panel-visual { display: none; }
  }
  
  
  
    .why-us {
    background: #f8f9ff;
    padding: 60px 16px;
    font-family: 'Inter', sans-serif;
  }

  .why-us__inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  /* ---------- Header ---------- */
  .why-us__header {
    text-align: center;
    margin-bottom: 40px;
  }

  .why-us__badge {
    display: inline-block;
    background: #e8eeff;
    color: #ff7e00;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
  }

  .why-us__title {
    font-size: clamp(28px, 8vw, 52px);
    font-weight: 800;
    color: #0f0c29;
    margin: 16px 0 12px;
    line-height: 1.15;
  }

  .why-us__title span { color: #ff7e00; }

  .why-us__subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* ---------- Stat strip ---------- */
  .why-us__stats {
    background: linear-gradient(135deg, #0f0c29 0%, #0f0c29 100%);
    border-radius: 20px;
    padding: 32px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 24px;
    text-align: center;
  }

  .why-us__stat {
    padding: 16px 12px;
    position: relative;
  }

  /* Dividers between stats using pseudo-elements */
  .why-us__stat:nth-child(1),
  .why-us__stat:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .why-us__stat:nth-child(1),
  .why-us__stat:nth-child(3) {
    border-right: 1px solid rgba(255,255,255,0.15);
  }

  .why-us__stat-number {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
  }

  .why-us__stat-number span { color: #a5b4fc; }

  .why-us__stat-label {
    color: #c4b5fd;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
  }

  /* ---------- Card grid ---------- */
  .why-us__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ---------- Base card ---------- */
  .why-us__card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid #ede9fe;
    position: relative;
    overflow: hidden;
  }

  .why-us__card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: #f5f3ff;
    border-radius: 50%;
  }

  /* ---------- Highlighted (purple) card ---------- */
  .why-us__card--highlight {
    background: linear-gradient(145deg, #ff7e00, #7c3aed);
    border: none;
  }

  .why-us__card--highlight::before { background: rgba(255,255,255,0.08); }
  .why-us__card--highlight .why-us__card-title { color: #fff; }
  .why-us__card--highlight .why-us__card-text { color: #c4b5fd; }
  .why-us__card--highlight .why-us__card-link { color: #e0e7ff; }

  /* ---------- Wide dark card ---------- */
  .why-us__card--wide {
    background: #0f0c29;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 24px;
  }

  .why-us__card--wide::before { display: none; }
  .why-us__card--wide .why-us__card-title { font-size: 20px; color: #fff; }
  .why-us__card--wide .why-us__card-text { color: #9ca3af; }

  /* ---------- Card internals ---------- */
  .why-us__card-icon {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
  }

  .why-us__card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
  }

  .why-us__card-text {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
  }

  .why-us__card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff7e00;
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    text-decoration: none;
    /* Larger tap target */
    padding: 4px 0;
    min-height: 44px;
    align-items: center;
  }

  /* ---------- CTA button (wide card) ---------- */
  .why-us__cta-btn {
    background: #ff7e00;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    display: inline-block;
    width: 100%;
    text-align: center;
    /* Minimum 44px tap target */
    min-height: 48px;
    line-height: 20px;
  }

  /* ============================================================
     TABLET — 2-column grid
  ============================================================ */
  @media (min-width: 600px) {
    .why-us {
      padding: 80px 24px;
    }

    .why-us__header {
      margin-bottom: 50px;
    }

    .why-us__stats {
      grid-template-columns: repeat(4, 1fr);
      padding: 40px 32px;
    }

    /* Reset 2×2 divider logic for 4-column layout */
    .why-us__stat:nth-child(1),
    .why-us__stat:nth-child(2) {
      border-bottom: none;
    }
    .why-us__stat:nth-child(1),
    .why-us__stat:nth-child(3) {
      border-right: none;
    }
    /* Vertical dividers between each column */
    .why-us__stat + .why-us__stat {
      border-left: 1px solid rgba(255,255,255,0.15);
    }

    .why-us__grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .why-us__card--wide {
      grid-column: span 2;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 36px 32px;
    }

    .why-us__cta-btn {
      width: auto;
      flex-shrink: 0;
    }
  }

  /* ============================================================
     DESKTOP — full layout
  ============================================================ */
  @media (min-width: 900px) {
    .why-us {
      padding: 100px 20px;
    }

    .why-us__header {
      margin-bottom: 70px;
    }

    .why-us__stats {
      border-radius: 24px;
      padding: 48px 40px;
      margin-bottom: 60px;
    }

    .why-us__stat-number { font-size: 48px; }

    .why-us__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .why-us__card {
      padding: 36px 32px;
    }

    .why-us__card-title { font-size: 20px; }
    .why-us__card-text  { font-size: 15px; }

    .why-us__card--wide {
      grid-column: span 2;
      padding: 44px 40px;
    }

    .why-us__card--wide .why-us__card-title { font-size: 24px; }
  }


.why-us-cta{
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}