/* ============================================
   THIRD SECTION — "A Menu That Looks Amazing"
   Height: 700px | Background: #0E0D0C
   ============================================ */

.ts-section {
  position: relative;
  background-color: #0E0D0C;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 75px 0 60px;
}

/* Inner container */
.ts-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-sizing: border-box;
}

/* ── LEFT: Text ── */
.ts-content {
  flex: 0 0 auto;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Tag — Inter SemiBold 16px LH30 LS1px #E29F29 */
.ts-tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 1px;
  color: var(--primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

/* Heading — Plus Jakarta Sans SemiBold 50px LH62 LS1px #FFFFFF */
.ts-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 46px;
  line-height: 60px;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin: 0 0 20px;
  white-space: nowrap;
}

.ts-highlight {
  color: var(--primary);
}

/* Description — Inter Regular 18px LH30 LS0.5px #FFFFFF */
.ts-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  margin: 0 0 28px;
}

/* ── Feature list ── */
.ts-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ts-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

/* Gold checkmark circle */
.ts-list li::before {
  content: '';
  display: inline-flex;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5L4.5 8.5L11 1.5' stroke='%231A1A1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── CTA Button ── */
.ts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 32px;
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid var(--primary);
  transition: background 0.2s ease, transform 0.15s ease;
  align-self: flex-start;
}

.ts-btn:hover {
  background: #C4881A;
  border-color: #C4881A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ── RIGHT: Phone image ── */
.ts-img-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ts-phone {
  width: auto;
  max-width: 520px;
  display: block;
  filter: drop-shadow(-16px 24px 48px rgba(0,0,0,0.7));
}

/* ══════════════════════════════════════════════
   THIRD SECTION — RESPONSIVE
══════════════════════════════════════════════ */

/* ≤ 1200px */
@media (max-width: 1200px) {
  .ts-inner   { padding: 0 32px; gap: 32px; }
  .ts-heading { font-size: 42px; line-height: 54px; }
}

/* ≤ 1024px */
@media (max-width: 1024px) {
  .ts-heading  { font-size: 36px; line-height: 48px; }
  .ts-content  { max-width: 460px; }
  .ts-inner    { gap: 24px; }
}

/* ≤ 900px — stack vertically */
@media (max-width: 900px) {
  .ts-section { padding: 60px 0; }

  .ts-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    gap: 40px;
  }

  .ts-content {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .ts-heading { font-size: 34px; line-height: 46px; white-space: normal; }
  .ts-desc    { font-size: 16px; line-height: 28px; }

  /* List left-aligned on mobile */
  .ts-list {
    text-align: left;
    align-self: flex-start;
    width: 100%;
  }
  .ts-list li { justify-content: flex-start; }

  .ts-btn { align-self: center; }

  .ts-img-col { width: 100%; max-width: 380px; }
  .ts-phone   { max-height: 420px; width: auto; object-fit: contain; }
}

/* ≤ 768px */
@media (max-width: 768px) {
  .ts-heading { font-size: 30px; line-height: 42px; }
  .ts-tag     { font-size: 14px; }
}

/* ≤ 600px */
@media (max-width: 600px) {
  .ts-section { padding: 48px 0; }
  .ts-inner   { padding: 0 20px; gap: 32px; }
  .ts-tag     { font-size: 12px; letter-spacing: 0.8px; margin-bottom: 12px; }
  .ts-heading {
    font-size: 30px;
    line-height: 40px;
    white-space: normal;
  }
  .ts-desc    { font-size: 15px; line-height: 26px; margin-bottom: 20px; white-space: normal; }

  .ts-list    { gap: 10px; }
  .ts-list li { font-size: 15px; }

  .ts-btn {
    height: 44px;
    font-size: 13px;
    padding: 0 22px;
  }

  .ts-img-col { max-width: 300px; }
  .ts-phone   { max-height: 320px; width: auto; object-fit: contain; }
}

/* ≤ 430px */
@media (max-width: 430px) {
  .ts-inner   { padding: 0 16px; gap: 28px; }
  .ts-heading { font-size: 30px; line-height: 40px; white-space: normal; }
  .ts-desc    { font-size: 14px; line-height: 24px; }
}

/* ≤ 360px */
@media (max-width: 360px) {
  .ts-heading { font-size: 20px; line-height: 30px; }
}
