/* ==================== CTA Base Styles ==================== */
.cta-container {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  margin: 28px 0;
}

.cta-card {
  border-radius: 12px;
  margin: 28px 0;
}

/* ==================== CTA 1 - Image-line Banner ==================== */
.cta-1-banner {
  border: 1.5px solid #ffe0d0;
}

.cta-1-gradient-box {
  background: linear-gradient(145deg, #FF6B35, #ff8c5a);
  min-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  text-align: center;
  gap: 6px;
}

.cta-1-logo {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}

.cta-1-logo-small {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.cta-1-content {
  background: #fff;
  padding: 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-1-badge {
  display: inline-block;
  background: #fff3ee;
  color: #FF6B35;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  width: fit-content;
}

.cta-1-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #1a2e4a;
}

.cta-1-description {
  margin: 0 0 12px;
  font-size: 12px;
  color: #5a6a7e;
  line-height: 1.5;
}

.cta-1-button-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-block;
  background: #FF6B35;
  color: #fff;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.cta-btn-secondary {
  display: inline-block;
  background: #fff;
  color: #FF6B35;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid #FF6B35;
}

/* ==================== CTA 2 - Pull Quote ==================== */
.cta-2-quote {
  border-left: 4px solid #FF6B35;
  background: #fff3ee;
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  margin: 28px 0;
}

.cta-2-title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: #1a2e4a;
}

.cta-2-description {
  margin: 0 0 12px;
  font-size: 13px;
  color: #5a6a7e;
  line-height: 1.6;
}

.cta-2-link {
  font-size: 13px;
  font-weight: 700;
  color: #FF6B35;
  text-decoration: underline;
}

/* ==================== CTA 3 - Full-width Card ==================== */
.cta-3-card {
  background: #fff;
  border: 1.5px solid #ffe0cc;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin: 36px 0;
}

.cta-3-badge {
  display: inline-block;
  background: #fff3ee;
  color: #FF6B35;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.cta-3-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a2e4a;
  margin: 0 0 8px;
  text-align: center;
}

.cta-3-description {
  font-size: 13px;
  color: #5a6a7e;
  max-width: 480px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.cta-3-button-group {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== CTA 4 - Navy Strip ==================== */
.cta-4-strip {
  background: #1a2e4a;
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.cta-4-title {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.cta-4-subtitle {
  margin: 0;
  font-size: 12px;
  color: #a0b4cc;
}

.cta-4-button {
  background: #FF6B35;
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

/* ==================== CTA 5 - Orange Gradient Hero ==================== */
.cta-5-hero {
  background: linear-gradient(120deg, #FF6B35 0%, #FFB300 100%);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0;
}

.cta-5-title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.cta-5-description {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.87);
}

.cta-5-button {
  background: #fff;
  color: #FF6B35;
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

/* ==================== CTA 6 - Trust Stats Bar ==================== */
.cta-6-stats {
  background: #f5f6f8;
  border-radius: 12px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border: 1px solid #e8edf3;
  margin: 28px 0;
}

.cta-6-stats-group {
  display: flex;
  gap: 24px;
  flex: 1;
  flex-wrap: wrap;
}

.cta-6-stat-item {
  text-align: center;
}

.cta-6-stat-number {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #FF6B35;
}

.cta-6-stat-label {
  margin: 0;
  font-size: 11px;
  color: #5a6a7e;
}

.cta-6-button {
  background: #FF6B35;
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

/* ==================== CTA 7 - Blue Minimal Inline ==================== */
.cta-7-inline {
  background: #eaf2fb;
  border: 1px solid #c7ddf5;
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.cta-7-text {
  margin: 0;
  font-size: 14px;
  color: #1a2e4a;
  font-weight: 500;
}

.cta-7-text strong {
  color: #2E6DB4;
}

.cta-7-button {
  background: #2E6DB4;
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

/* ==================== CTA 8 - Split Two-Column ==================== */
.cta-8-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1.5px solid #ffe0cc;
  border-radius: 12px;
  overflow: hidden;
  margin: 28px 0;
}

.cta-8-col-couples {
  background: #fff3ee;
  padding: 20px;
}

.cta-8-col-individuals {
  background: #eaf2fb;
  padding: 20px;
}

.cta-8-badge-couples {
  display: inline-block;
  background: #FF6B35;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.cta-8-badge-individuals {
  display: inline-block;
  background: #2E6DB4;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.cta-8-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a2e4a;
  margin: 4px 0 6px;
}

.cta-8-description {
  font-size: 12px;
  color: #5a6a7e;
  margin: 0 0 14px;
  line-height: 1.5;
}

.cta-8-button-couples {
  background: #FF6B35;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

.cta-8-button-individuals {
  background: #1a2e4a;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

/* ==================== CTA 9 - Honey Yellow ==================== */
.cta-9-honey {
  background: #fff8e1;
  border: 1.5px solid #ffe082;
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.cta-9-icon {
  background: #FFB300;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-9-content {
  flex: 1;
}

.cta-9-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #1a2e4a;
}

.cta-9-description {
  margin: 0;
  font-size: 13px;
  color: #5a6a7e;
  line-height: 1.5;
}

.cta-9-button {
  background: #FFB300;
  color: #1a2e4a;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ==================== CTA 10 - Testimonial CTA ==================== */
.cta-10-testimonial {
  background: #fff;
  border: 1.5px solid #e2eaf4;
  border-radius: 12px;
  padding: 20px 22px;
  margin: 28px 0;
}

.cta-10-quote {
  font-size: 14px;
  color: #1a2e4a;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 12px;
}

.cta-10-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-10-client {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-10-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff3ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #FF6B35;
}

.cta-10-client-name {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #1a2e4a;
}

.cta-10-client-rating {
  margin: 0;
  font-size: 11px;
  color: #5a6a7e;
}

.cta-10-button {
  background: #FF6B35;
  color: #fff;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

/* ==================== CTA 11 - Sticky Bar ==================== */
.cta-11-sticky {
  background: #1a2e4a;
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 3px solid #FF6B35;
  margin: 28px 0;
}

.cta-11-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-11-icon {
  background: #FF6B35;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-11-title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.cta-11-subtitle {
  margin: 0;
  font-size: 11px;
  color: #a0b4cc;
}

.cta-11-button-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cta-11-btn-primary {
  background: #FF6B35;
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
}

.cta-11-btn-secondary {
  background: transparent;
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ==================== CTA 12 - Services Grid ==================== */
.cta-12-services {
  background: #fff;
  border: 1.5px solid #e2eaf4;
  border-radius: 12px;
  padding: 20px;
  margin: 28px 0;
}

.cta-12-title {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #1a2e4a;
  margin: 0 0 16px;
}

.cta-12-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.cta-12-service-couples {
  background: #fff3ee;
  border-radius: 10px;
  padding: 14px 8px;
  text-align: center;
  text-decoration: none;
  display: block;
}

.cta-12-service-premarital {
  background: #eaf2fb;
  border-radius: 10px;
  padding: 14px 8px;
  text-align: center;
  text-decoration: none;
  display: block;
}

.cta-12-service-comm {
  background: #fff8e1;
  border-radius: 10px;
  padding: 14px 8px;
  text-align: center;
  text-decoration: none;
  display: block;
}

.cta-12-service-icon {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: #FF6B35;
}

.cta-12-service-icon-blue {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: #2E6DB4;
}

.cta-12-service-icon-yellow {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: #FFB300;
}

.cta-12-service-label {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  color: #1a2e4a;
}

.cta-12-button {
  background: #FF6B35;
  color: #fff;
  text-decoration: none;
  padding: 11px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  display: block;
  text-align: center;
}

/* ==================== CTA 13 - Live Availability ==================== */
.cta-13-live {
  background: #fff;
  border: 1.5px solid #ffe0cc;
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.cta-13-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.cta-13-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.cta-13-status-text {
  font-size: 11px;
  font-weight: 700;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.cta-13-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #1a2e4a;
}

.cta-13-description {
  margin: 0;
  font-size: 12px;
  color: #5a6a7e;
}

.cta-13-button {
  background: #FF6B35;
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

/* ==================== CTA 15 - End of Article Divider ==================== */
.cta-15-divider {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid #e2eaf4;
  margin: 36px 0;
}

.cta-15-gradient-bar {
  background: linear-gradient(90deg, #FF6B35 0%, #FFB300 100%);
  height: 5px;
}

.cta-15-content {
  padding: 22px 24px;
  text-align: center;
}

.cta-15-badge {
  font-size: 11px;
  font-weight: 700;
  color: #FF6B35;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 6px;
  text-align: center;
}

.cta-15-title {
  font-size: 19px;
  font-weight: 700;
  color: #1a2e4a;
  margin: 0 0 8px;
  text-align: center;
}

.cta-15-description {
  font-size: 13px;
  color: #5a6a7e;
  margin: 0 auto 20px;
  max-width: 460px;
  line-height: 1.7;
}

.cta-15-button-group {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-15-footer {
  font-size: 11px;
  color: #5a6a7e;
  margin: 14px 0 0;
  text-align: center;
}

/* ==================== Utility Classes ==================== */
.cta-no-margin {
  margin: 0;
}