@charset "UTF-8";
.features-section {
  background: #fff;
  padding: 60px 0 50px;
  border-bottom: 6px solid #fdf0f0;
}
@media (max-width: 576px) {
  .features-section {
    padding: 40px 0 36px;
  }
}

.features-heading {
  margin-bottom: 10px;
}
.features-heading h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}
.features-heading h2 span {
  color: #e8232a;
  font-weight: 800;
}
@media (max-width: 576px) {
  .features-heading h2 {
    font-size: 1.45rem;
  }
}

.feature-card {
  padding: 10px 0;
}
@media (max-width: 575px) {
  .feature-card {
    text-align: center;
  }
}
.feature-card:hover .feature-icon {
  background: #fff0f0;
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.2s ease;
}
.feature-icon svg {
  width: 42px;
  height: 42px;
}
@media (max-width: 575px) {
  .feature-icon {
    margin: 0 auto 18px;
  }
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.feature-line {
  width: 36px;
  height: 2.5px;
  background: #e8232a;
  border-radius: 2px;
  margin-bottom: 12px;
}
@media (max-width: 575px) {
  .feature-line {
    margin: 0 auto 12px;
  }
}

.feature-text {
  font-size: 0.875rem;
  font-weight: 400;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* ════════════════════════════
   SUCCESS STORIES
════════════════════════════ */
.stories-section {
  background: #f8f8f8;
  padding: 64px 0 56px;
}

/* ── Heading row ── */
.stories-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}

.stories-heading h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 6px;
}

.stories-heading h2 span {
  color: #e8232a;
  font-weight: 800;
}

.stories-heading p {
  font-size: 0.875rem;
  color: #888;
  margin: 0;
}

/* Arrows */
.stories-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.st-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.st-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #555;
}

.st-arrow:hover {
  background: #e8232a;
  border-color: #e8232a;
  box-shadow: 0 4px 14px rgba(232, 35, 42, 0.3);
}

.st-arrow:hover svg {
  stroke: #fff;
}

.st-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Slider wrapper ── */
.stories-slider-wrap {
  overflow: hidden;
  border-radius: 16px;
}

.stories-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Card ── */
.story-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Card image */
.story-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.story-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.story-card:hover .story-img img {
  transform: scale(1.04);
}

.story-heart {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 1.1rem;
  color: #e8232a;
  background: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Card body */
.story-body {
  padding: 20px 20px 24px;
  flex: 1;
}

.story-name {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.story-line {
  width: 32px;
  height: 2.5px;
  background: #e8232a;
  border-radius: 2px;
  margin-bottom: 12px;
}

.story-text {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ── Dots ── */
.stories-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.st-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}

.st-dot.active {
  background: #e8232a;
  transform: scale(1.3);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .story-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 576px) {
  .story-card {
    flex: 0 0 100%;
  }
  .stories-heading h2 {
    font-size: 1.45rem;
  }
  .story-img {
    height: 180px;
  }
}
/* ════════════════════════════
   ABOUT US SECTION
════════════════════════════ */
.about-section {
  position: relative;
  background: #fdf3e8;
  padding: 80px 0;
  overflow: hidden;
}

/* ── Mandala background ── */
.about-mandala {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='90' fill='none' stroke='%23c8a96e' stroke-width='0.8' opacity='0.4'/%3E%3Ccircle cx='100' cy='100' r='70' fill='none' stroke='%23c8a96e' stroke-width='0.8' opacity='0.4'/%3E%3Ccircle cx='100' cy='100' r='50' fill='none' stroke='%23c8a96e' stroke-width='0.8' opacity='0.4'/%3E%3Ccircle cx='100' cy='100' r='30' fill='none' stroke='%23c8a96e' stroke-width='0.8' opacity='0.4'/%3E%3Cline x1='100' y1='10' x2='100' y2='190' stroke='%23c8a96e' stroke-width='0.5' opacity='0.3'/%3E%3Cline x1='10' y1='100' x2='190' y2='100' stroke='%23c8a96e' stroke-width='0.5' opacity='0.3'/%3E%3Cline x1='27' y1='27' x2='173' y2='173' stroke='%23c8a96e' stroke-width='0.5' opacity='0.3'/%3E%3Cline x1='173' y1='27' x2='27' y2='173' stroke='%23c8a96e' stroke-width='0.5' opacity='0.3'/%3E%3Cellipse cx='100' cy='100' rx='90' ry='40' fill='none' stroke='%23c8a96e' stroke-width='0.5' opacity='0.25'/%3E%3Cellipse cx='100' cy='100' rx='40' ry='90' fill='none' stroke='%23c8a96e' stroke-width='0.5' opacity='0.25'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

/* ── Layout ── */
.about-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 56px;
}

/* ════════════════════════════
   LEFT IMAGE COL
════════════════════════════ */
.about-img-col {
  flex: 0 0 44%;
  max-width: 44%;
}

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.about-img {
  width: 100%;
  height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Floating badges */
.about-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  min-width: 160px;
  animation: floatBadge 3s ease-in-out infinite;
}

.about-badge-1 {
  bottom: 36px;
  left: -24px;
  animation-delay: 0s;
}

.about-badge-2 {
  top: 40px;
  right: -24px;
  animation-delay: 1.5s;
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.about-badge-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.about-badge strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
}

.about-badge span {
  display: block;
  font-size: 0.72rem;
  color: #888;
  white-space: nowrap;
}

/* ════════════════════════════
   RIGHT CONTENT COL
════════════════════════════ */
.about-content-col {
  flex: 1;
  padding: 10px 0;
}

/* Tag */
.about-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #e8232a;
  background: #fff0f0;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 14px;
}

/* Heading */
.about-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 16px;
}

.about-heading span {
  color: #e8232a;
}

/* Description */
.about-desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ── Stats ── */
.about-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border-radius: 14px;
  padding: 18px 24px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.about-stat {
  flex: 1;
  text-align: center;
}

.about-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #e8232a;
  line-height: 1.2;
  margin-bottom: 4px;
}

.about-stat span {
  font-size: 0.75rem;
  color: #888;
  font-weight: 500;
  white-space: nowrap;
}

.about-stat-divider {
  width: 1px;
  height: 40px;
  background: #f0f0f0;
  flex-shrink: 0;
  margin: 0 8px;
}

/* ── Features ── */
.about-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #fff;
  border: 1.5px solid #fdd0d0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(232, 35, 42, 0.08);
}

.about-icon svg {
  width: 22px;
  height: 22px;
}

.about-feature-item h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 3px;
}

.about-feature-item p {
  font-size: 0.82rem;
  color: #888;
  margin: 0;
  line-height: 1.6;
}

/* ── CTA Buttons ── */
.about-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.about-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8232a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.about-btn-primary:hover {
  background: #c0171d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 35, 42, 0.28);
}

.about-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: #e8232a;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1.5px solid #e8232a;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.about-btn-outline:hover {
  background: #e8232a;
  color: #fff;
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 900px) {
  .about-wrap {
    flex-direction: column;
    gap: 48px;
  }
  .about-img-col {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }
  .about-img {
    height: 360px;
  }
  .about-badge-2 {
    right: -10px;
    top: 20px;
  }
  .about-badge-1 {
    left: -10px;
  }
  .about-heading {
    font-size: 1.65rem;
  }
  .about-mandala {
    right: 50%;
    top: 0;
    transform: translateX(50%);
    opacity: 0.25;
    width: 260px;
    height: 260px;
  }
}
@media (max-width: 576px) {
  .about-section {
    padding: 48px 0;
  }
  .about-heading {
    font-size: 1.4rem;
  }
  .about-img {
    height: 260px;
  }
  .about-badge {
    min-width: 130px;
    padding: 10px 12px;
  }
  .about-badge-icon {
    font-size: 1.2rem;
  }
  .about-stats {
    padding: 14px 12px;
  }
  .about-stat strong {
    font-size: 1.2rem;
  }
  .about-btns {
    flex-direction: column;
  }
  .about-btn-primary,
  .about-btn-outline {
    width: 100%;
    text-align: center;
  }
}
/* ════════════════════════════
   FAQ SECTION
════════════════════════════ */
.faq-section {
  background: #fff;
  padding: 72px 0;
}

/* ── Layout ── */
.faq-wrap {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}

/* ════════════════════════════
   LEFT COLUMN
════════════════════════════ */
.faq-left {
  flex: 0 0 36%;
  max-width: 36%;
  position: sticky;
  top: 90px;
}

.faq-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #e8232a;
  background: #fff0f0;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 14px;
}

.faq-heading {
  font-size: 1.85rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 14px;
}

.faq-heading span {
  color: #e8232a;
}

.faq-desc {
  font-size: 0.875rem;
  color: #777;
  line-height: 1.75;
  margin-bottom: 24px;
}

.faq-img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
  display: block;
}

.faq-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #e8232a;
  border: 1.5px solid #e8232a;
  border-radius: 25px;
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.faq-contact-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.faq-contact-btn:hover {
  background: #e8232a;
  color: #fff;
}

/* ════════════════════════════
   RIGHT COLUMN — ACCORDION
════════════════════════════ */
.faq-right {
  flex: 1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── FAQ Item ── */
.faq-item {
  border: 1.5px solid #f0f0f0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
  border-color: #ffd0d0;
  box-shadow: 0 4px 20px rgba(232, 35, 42, 0.07);
}

.faq-item.active {
  border-color: #e8232a;
  box-shadow: 0 4px 20px rgba(232, 35, 42, 0.1);
}

/* ── Question button ── */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-question span:first-child {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
  flex: 1;
  transition: color 0.2s;
}

.faq-item.active .faq-question span:first-child {
  color: #e8232a;
}

/* Icon circle */
.faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: #555;
  transition: stroke 0.2s;
}

.faq-item.active .faq-icon {
  background: #e8232a;
  transform: rotate(180deg);
}

.faq-item.active .faq-icon svg {
  stroke: #fff;
}

/* ── Answer ── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.875rem;
  color: #666;
  line-height: 1.8;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 900px) {
  .faq-wrap {
    flex-direction: column;
    gap: 36px;
  }
  .faq-left {
    flex: unset;
    max-width: 100%;
    position: static;
  }
  .faq-img {
    height: 160px;
  }
  .faq-heading {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .faq-section {
    padding: 48px 0;
  }
  .faq-heading {
    font-size: 1.3rem;
  }
  .faq-question span:first-child {
    font-size: 0.875rem;
  }
  .faq-contact-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ════════════════════════════
   FOOTER
════════════════════════════ */
.footer {
  position: relative;
  background: #1a1a2e;
  color: #ccc;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
}

/* Wave top */
.footer-wave {
  display: block;
  line-height: 0;
  margin-bottom: -2px;
}

.footer-wave svg {
  width: 100%;
  height: 50px;
  display: block;
}

.footer .container {
  padding-top: 56px;
  padding-bottom: 0;
}

/* ════════════════════════════
   GRID
════════════════════════════ */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
}

/* ════════════════════════════
   BRAND COL
════════════════════════════ */
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-brand-dot {
  width: 9px;
  height: 9px;
  background: #e8232a;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}
.footer-brand-desc {
  font-size: 0.85rem;
  color: #8899aa;
  line-height: 1.75;
  margin-bottom: 22px;
}

/* Social */
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.social-link:hover {
  background: #e8232a;
  border-color: #e8232a;
  color: #fff;
  transform: translateY(-2px);
}

/* ════════════════════════════
   COLUMN TITLES
════════════════════════════ */
.footer-col-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: #e8232a;
  border-radius: 2px;
}

/* ════════════════════════════
   FOOTER LINKS
════════════════════════════ */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: #8899aa;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, gap 0.2s;
}

.footer-links a::before {
  content: "›";
  font-size: 1rem;
  color: #e8232a;
  line-height: 1;
  transition: transform 0.2s;
}

.footer-links a:hover {
  color: #fff;
  gap: 10px;
}

/* ════════════════════════════
   CONTACT LIST
════════════════════════════ */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #8899aa;
  line-height: 1.6;
}

.fc-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(232, 35, 42, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fc-icon svg {
  width: 15px;
  height: 15px;
  stroke: #e8232a;
}

/* ════════════════════════════
   APP BUTTONS
════════════════════════════ */
.footer-app-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 8px 14px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.app-btn:hover {
  background: #e8232a;
  border-color: #e8232a;
  color: #fff;
}

/* ════════════════════════════
   DIVIDER
════════════════════════════ */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 0;
}

/* ════════════════════════════
   BOTTOM BAR
════════════════════════════ */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0 24px;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: #667788;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: #667788;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: #e8232a;
}

.dot-sep {
  color: #445566;
  font-size: 0.6rem;
}

/* Designed by credit */
.footer-credit {
  font-size: 0.82rem;
  color: #667788;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.credit-brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  color: #e8232a;
  text-decoration: none;
  transition: color 0.2s;
}

.credit-brand:hover {
  color: #ff6363;
}

.credit-dot {
  width: 6px;
  height: 6px;
  background: #e8232a;
  border-radius: 50%;
  display: inline-block;
}

.footer-credit a {
  text-decoration: none;
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-bottom-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .footer-wave svg {
    height: 30px;
  }
}
/* ════════════════════════════
   TESTIMONIALS
════════════════════════════ */
.testi-section {
  background: #fafafa;
  padding: 72px 0;
  overflow: hidden;
}

/* ── Heading ── */
.testi-heading {
  text-align: center;
  margin-bottom: 48px;
}

.testi-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #e8232a;
  background: #fff0f0;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 12px;
}

.testi-heading h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.testi-heading h2 span {
  color: #e8232a;
}

.testi-heading p {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
}

/* ── Marquee wrapper ── */
.testi-marquee-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

/* Fade edges */
.testi-marquee-wrap::before,
.testi-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.testi-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fafafa, transparent);
}

.testi-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fafafa, transparent);
}

/* ── Marquee row ── */
.testi-marquee {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scrollLeft 35s linear infinite;
}

.testi-marquee-reverse {
  animation: scrollRight 38s linear infinite;
}

/* Pause on hover */
.testi-marquee-wrap:hover .testi-marquee,
.testi-marquee-wrap:hover .testi-marquee-reverse {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
/* ── Track ── */
.testi-track {
  display: flex;
  gap: 20px;
  padding: 12px 10px;
}

/* ── Card ── */
.testi-card {
  width: 320px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  border: 1.5px solid #f0f0f0;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  position: relative;
}

.testi-card:hover {
  border-color: #ffd0d0;
  box-shadow: 0 8px 32px rgba(232, 35, 42, 0.1);
  transform: translateY(-3px);
}

/* Quote mark */
.testi-card::before {
  content: "“";
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 4rem;
  color: #f5e0e0;
  font-family: Georgia, serif;
  line-height: 1;
}

/* Alt card style */
.testi-card-alt {
  background: linear-gradient(135deg, #fff5f5, #fff);
  border-color: #ffe0e0;
}

.testi-card-alt::before {
  color: #ffc0c0;
}

/* ── Card top ── */
.testi-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.testi-top img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #ffd0d0;
  flex-shrink: 0;
}

.testi-top h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 2px;
}

.testi-top span {
  font-size: 0.75rem;
  color: #aaa;
  display: block;
}

.testi-stars {
  color: #f5a623;
  font-size: 0.75rem;
  margin-top: 3px;
  letter-spacing: 1px;
}

/* ── Card text ── */
.testi-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.75;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 768px) {
  .testi-section {
    padding: 48px 0;
  }
  .testi-heading h2 {
    font-size: 1.5rem;
  }
  .testi-card {
    width: 270px;
    padding: 18px;
  }
  .testi-marquee-wrap::before,
  .testi-marquee-wrap::after {
    width: 60px;
  }
}
@media (max-width: 480px) {
  .testi-card {
    width: 240px;
  }
  .testi-heading h2 {
    font-size: 1.3rem;
  }
}
/* ════════════════════════════
   REGISTRATION SECTION
════════════════════════════ */
.reg-section {
  background: #f4f4f4;
  min-height: 100vh;
}

/* ════════════════════════════
   TYPE SWITCHER BAR
   full-width bg | container content
════════════════════════════ */
.reg-type-bar {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  width: 100%;
  position: sticky;
  top: 70px;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

.reg-type-bar .container {
  padding-top: 15px;
  padding-bottom: 15px;
}

.reg-type-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.reg-type-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  flex-shrink: 0;
}

.reg-type-toggle {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.reg-type-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  padding: 9px 22px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.reg-type-btn:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.reg-type-btn.active {
  background: #e8232a;
  border-color: #e8232a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(232, 35, 42, 0.38);
}

.reg-type-badge {
  margin-left: auto;
  flex-shrink: 0;
}

.badge-local,
.badge-nri {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 20px;
  padding: 5px 14px;
}

.badge-local {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.badge-nri {
  background: rgba(52, 152, 219, 0.15);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

/* ════════════════════════════
   FORM CARD
   full-width bg
════════════════════════════ */
.reg-card {
  background: #fff;
  width: 100%;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* ════════════════════════════
   HEADER
   full-width red bg | container content
════════════════════════════ */
.reg-header {
  background: linear-gradient(135deg, #e8232a, #ff6363);
  width: 100%;
}

.reg-header .container {
  padding-top: 26px;
  padding-bottom: 26px;
}

.reg-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.reg-header-icon {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.reg-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 5px;
  line-height: 1.2;
}

.reg-header h2 span {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.82;
}

.reg-header p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

/* ════════════════════════════
   FORM BODY
   white bg | container content
════════════════════════════ */
.reg-form {
  padding: 0;
}

.reg-form .container {
  padding-top: 36px;
  padding-bottom: 52px;
}

/* ── NRI info box ── */
.nri-info-box {
  background: #e8f4fd;
  border-left: 4px solid #3498db;
  border-radius: 0 10px 10px 0;
  padding: 12px 18px;
  font-size: 0.855rem;
  color: #1a6b9a;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.65;
}

/* ── Section titles ── */
.reg-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #e8232a;
  background: #fff5f5;
  border-left: 4px solid #e8232a;
  padding: 11px 18px;
  border-radius: 0 10px 10px 0;
  margin: 32px 0 20px;
}

.reg-section-title:first-child {
  margin-top: 0;
}

.reg-section-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  color: #3498db;
  margin: 20px 0 14px;
  padding: 8px 16px;
  background: #f0f8ff;
  border-left: 3px solid #3498db;
  border-radius: 0 8px 8px 0;
}

/* ── Grids ── */
.reg-grid {
  display: grid;
  gap: 16px;
}

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

.reg-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.reg-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ── Fields ── */
.reg-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.reg-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #555;
  line-height: 1.4;
}

.reg-field label em {
  color: #e8232a;
  font-style: normal;
  margin-left: 2px;
}

/* Inputs / Select / Textarea */
.reg-field input,
.reg-field select,
.reg-field textarea {
  font-family: inherit;
  font-size: 0.875rem;
  color: #333;
  background: #f9f9f9;
  border: 1.5px solid #e5e5e5;
  border-radius: 10px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
}

.reg-field input:focus,
.reg-field select:focus,
.reg-field textarea:focus {
  border-color: #e8232a;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232, 35, 42, 0.07);
}

.reg-field input::-moz-placeholder, .reg-field textarea::-moz-placeholder {
  color: #ccc;
  font-size: 0.82rem;
}

.reg-field input::placeholder,
.reg-field textarea::placeholder {
  color: #ccc;
  font-size: 0.82rem;
}

.reg-field textarea {
  resize: vertical;
  min-height: 80px;
}

.reg-field select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* Validation */
.reg-error {
  font-size: 0.72rem;
  color: #e8232a;
  display: none;
}

.reg-field.invalid input,
.reg-field.invalid select,
.reg-field.invalid textarea {
  border-color: #e8232a;
  background: #fff8f8;
}

.reg-field.invalid .reg-error {
  display: block;
}

/* Radio group */
.reg-radio-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.reg-radio {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #444;
  cursor: pointer;
}

.reg-radio input[type=radio] {
  width: 16px;
  height: 16px;
  accent-color: #e8232a;
  border: none;
  padding: 0;
  background: none;
  box-shadow: none;
}

/* ── Upload Boxes ── */
.reg-upload-box {
  position: relative;
  border: 2px dashed #e0e0e0;
  border-radius: 12px;
  background: #f9f9f9;
  min-height: 120px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.reg-upload-box:hover {
  border-color: #e8232a;
  background: #fff5f5;
}

.reg-upload-box input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  border: none;
  background: none;
  padding: 0;
  box-shadow: none;
  width: 100%;
  height: 100%;
}

.reg-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  gap: 4px;
  height: 120px;
}

.upload-emoji {
  font-size: 1.8rem;
}

.upload-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
}

.upload-hint {
  font-size: 0.7rem;
  color: #bbb;
}

.reg-upload-preview {
  display: none;
  padding: 8px;
}

.reg-upload-preview img {
  width: 100%;
  max-height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.reg-upload-preview .pdf-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0f0f0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
}

/* ── Submit Row ── */
.reg-submit-row {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid #f0f0f0;
}

.reg-terms {
  font-size: 0.78rem;
  color: #aaa;
  margin-bottom: 20px;
  line-height: 1.7;
}

.reg-terms a {
  color: #e8232a;
  text-decoration: underline;
}

.reg-submit-btns {
  display: flex;
  gap: 12px;
}

.reg-btn-reset {
  font-size: 0.875rem;
  font-weight: 600;
  color: #888;
  border: 1.5px solid #ddd;
  border-radius: 25px;
  padding: 12px 32px;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s, border-color 0.2s;
}

.reg-btn-reset:hover {
  color: #e8232a;
  border-color: #e8232a;
}

.reg-btn-submit {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: #e8232a;
  border: 2px solid #e8232a;
  border-radius: 25px;
  padding: 13px 52px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.reg-btn-submit:hover {
  background: #c0171d;
  border-color: #c0171d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 35, 42, 0.28);
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1200px) {
  .reg-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .reg-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .reg-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .reg-section {
    padding: 0 0 40px;
  }
  .reg-type-bar {
    top: 60px;
    border-radius: 0;
  }
  .reg-type-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .reg-type-toggle {
    width: 100%;
    flex-direction: column;
  }
  .reg-type-btn {
    justify-content: center;
    width: 100%;
  }
  .reg-type-badge {
    margin: 0;
  }
  .reg-grid-2,
  .reg-grid-3,
  .reg-grid-4 {
    grid-template-columns: 1fr;
  }
  .reg-header h2 {
    font-size: 1.2rem;
  }
  .reg-form .container {
    padding-top: 24px;
    padding-bottom: 36px;
  }
  .reg-submit-btns {
    flex-direction: column-reverse;
  }
  .reg-btn-submit,
  .reg-btn-reset {
    width: 100%;
    text-align: center;
  }
}
/* ════════════════════════════
   ABOUT PAGE
════════════════════════════ */
/* ══ HERO ══ */
.abt-hero {
  position: relative;
  background: linear-gradient(135deg, #8b0030 0%, #e8232a 50%, #ff6363 100%);
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.abt-hero-overlay {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1511285560929-80b456fea0bc?w=1600&q=60") center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.abt-hero-mandala {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  pointer-events: none;
  z-index: 0;
}

.abt-mandala-svg {
  width: 100%;
  height: 100%;
  animation: rotateMandala 40s linear infinite;
}

@keyframes rotateMandala {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.abt-hero .container {
  position: relative;
  z-index: 1;
}

.abt-hero-content {
  max-width: 680px;
}

.abt-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.abt-hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.abt-hero-content h1 span {
  color: #ffe0e0;
}

.abt-hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 20px;
}

.abt-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.abt-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.abt-hero-breadcrumb a:hover {
  color: #fff;
}

/* ══ SHARED TAG ══ */
.abt-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #e8232a;
  background: #fff0f0;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 12px;
}

.abt-tag-light {
  color: #ffaaaa;
  background: rgba(255, 255, 255, 0.12);
}

/* ══ WHO WE ARE ══ */
.abt-who {
  padding: 80px 0;
  background: #fdf3e8;
}

.abt-who-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.abt-who-img-col {
  flex: 0 0 44%;
  max-width: 44%;
}

.abt-who-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.abt-who-img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.abt-who-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  min-width: 155px;
  animation: floatBadge 3s ease-in-out infinite;
}

.abt-badge-1 {
  bottom: 36px;
  left: -28px;
  animation-delay: 0s;
}

.abt-badge-2 {
  top: 40px;
  right: -28px;
  animation-delay: 1.5s;
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
.abt-who-badge .abt-badge-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.abt-who-badge strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
}

.abt-who-badge span {
  display: block;
  font-size: 0.72rem;
  color: #888;
  white-space: nowrap;
}

.abt-who-exp {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #e8232a, #ff6363);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(232, 35, 42, 0.35);
  animation: floatBadge 3.5s ease-in-out infinite;
  animation-delay: 0.8s;
}

.abt-who-exp strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.abt-who-exp span {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.3;
}

.abt-who-content {
  flex: 1;
}

.abt-who-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 16px;
}

.abt-who-content h2 span {
  color: #e8232a;
}

.abt-who-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 14px;
}

.abt-who-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.abt-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  border: 1px solid #f0e8dc;
  transition: box-shadow 0.2s;
}

.abt-feature-item:hover {
  box-shadow: 0 4px 16px rgba(232, 35, 42, 0.1);
}

.abt-fi-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: #fff0f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-fi-icon svg {
  width: 20px;
  height: 20px;
}

.abt-feature-item h6 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 3px;
}

.abt-feature-item p {
  font-size: 0.75rem;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

/* ══ STATS ══ */
.abt-stats-section {
  position: relative;
  background: linear-gradient(135deg, #8b0030, #e8232a);
  padding: 64px 0;
  overflow: hidden;
}

.abt-stats-overlay {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1519741497674-611481863552?w=1600&q=40") center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.abt-stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.abt-stat-item {
  text-align: center;
  padding: 20px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.abt-stat-item:last-child {
  border-right: none;
}

.abt-stat-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.abt-stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: inline;
}

.abt-stat-plus {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffd0d0;
  display: inline;
}

.abt-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
  font-weight: 500;
}

/* ══ MISSION VISION ══ */
.abt-mv-section {
  padding: 80px 0;
  background: #fff;
}

.abt-mv-header {
  text-align: center;
  margin-bottom: 48px;
}

.abt-mv-header h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.abt-mv-header h2 span {
  color: #e8232a;
}

.abt-mv-header p {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
}

.abt-mv-header-light h2 {
  color: #fff;
}

.abt-mv-header-light p {
  color: rgba(255, 255, 255, 0.7);
}

.abt-mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.abt-mv-card {
  border-radius: 18px;
  padding: 32px 28px;
  border: 1.5px solid #f0f0f0;
  transition: transform 0.25s, box-shadow 0.25s;
}

.abt-mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.abt-mission {
  background: #fff5f5;
  border-color: #ffd0d0;
}

.abt-vision {
  background: #f0f8ff;
  border-color: #c8e6ff;
}

.abt-values {
  background: #f5fff5;
  border-color: #c8e8c8;
}

.abt-mv-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.abt-mv-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.abt-mv-line {
  width: 36px;
  height: 3px;
  background: #e8232a;
  border-radius: 2px;
  margin-bottom: 14px;
}

.abt-vision .abt-mv-line {
  background: #3498db;
}

.abt-values .abt-mv-line {
  background: #27ae60;
}

.abt-mv-card p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 16px;
}

.abt-mv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abt-mv-list li {
  font-size: 0.82rem;
  color: #555;
  font-weight: 500;
}

/* ══ HOW IT WORKS ══ */
.abt-hiw-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.abt-hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.abt-hiw-item {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid #f0f0f0;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  margin: 0 8px;
}

.abt-hiw-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(232, 35, 42, 0.1);
  border-color: #ffd0d0;
}

.abt-hiw-num {
  font-size: 3rem;
  font-weight: 900;
  color: #f5e0e0;
  line-height: 1;
  margin-bottom: 8px;
}

.abt-hiw-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.abt-hiw-item h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.abt-hiw-item p {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.7;
  margin: 0;
}

.abt-hiw-arrow {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #e8232a;
  z-index: 2;
  font-weight: 700;
}

.abt-hiw-item:last-child .abt-hiw-arrow {
  display: none;
}

/* ══ WHY CHOOSE US ══ */
.abt-why-section {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 80px 0;
  overflow: hidden;
}

.abt-why-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(232, 35, 42, 0.12) 0%, transparent 60%), radial-gradient(circle at 80% 50%, rgba(52, 152, 219, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.abt-why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.abt-why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.abt-why-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(232, 35, 42, 0.4);
  transform: translateY(-3px);
}

.abt-why-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.abt-why-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.abt-why-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

/* ══ TEAM ══ */
.abt-team-section {
  padding: 80px 0;
  background: #fff;
}

.abt-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.abt-team-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #f0f0f0;
  padding: 24px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.abt-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(232, 35, 42, 0.1);
  border-color: #ffd0d0;
}

.abt-team-img {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
}

.abt-team-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border: 3px solid #ffd0d0;
  border-radius: 50%;
}

.abt-team-social {
  position: absolute;
  inset: 0;
  background: rgba(232, 35, 42, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.abt-team-card:hover .abt-team-social {
  opacity: 1;
}

.abt-team-social a {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
}

.abt-team-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.abt-team-card > span {
  font-size: 0.78rem;
  color: #e8232a;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.abt-team-card p {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.65;
  margin: 0;
}

/* ══ CTA SECTION ══ */
.abt-cta-section {
  position: relative;
  background: linear-gradient(135deg, #e8232a, #8b0030);
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}

.abt-cta-mandala {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
}

.abt-cta-mandala-svg {
  width: 100%;
  height: 100%;
  animation: rotateMandala 50s linear infinite reverse;
}

.abt-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.abt-cta-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.abt-cta-inner h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.abt-cta-inner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 28px;
}

.abt-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.abt-cta-btn-primary {
  background: #fff;
  color: #e8232a;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.abt-cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  color: #e8232a;
}

.abt-cta-btn-outline {
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.abt-cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.abt-cta-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.abt-cta-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1100px) {
  .abt-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .abt-stat-item:nth-child(3) {
    border-right: none;
  }
  .abt-hiw-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .abt-hiw-arrow {
    display: none;
  }
  .abt-hiw-item {
    margin: 0;
  }
  .abt-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .abt-who-wrap {
    flex-direction: column;
    gap: 48px;
  }
  .abt-who-img-col {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }
  .abt-who-img {
    height: 340px;
  }
  .abt-who-features {
    grid-template-columns: 1fr;
  }
  .abt-mv-grid {
    grid-template-columns: 1fr;
  }
  .abt-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .abt-hero-content h1 {
    font-size: 2.2rem;
  }
  .abt-badge-2 {
    right: -12px;
    top: 20px;
  }
  .abt-badge-1 {
    left: -12px;
  }
}
@media (max-width: 600px) {
  .abt-hero {
    padding: 80px 0 60px;
    min-height: 280px;
  }
  .abt-hero-content h1 {
    font-size: 1.7rem;
  }
  .abt-who {
    padding: 48px 0;
  }
  .abt-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .abt-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
  }
  .abt-hiw-grid {
    grid-template-columns: 1fr;
  }
  .abt-why-grid {
    grid-template-columns: 1fr;
  }
  .abt-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .abt-cta-inner h2 {
    font-size: 1.6rem;
  }
  .abt-cta-btns {
    flex-direction: column;
  }
  .abt-cta-btn-primary,
  .abt-cta-btn-outline {
    width: 100%;
    text-align: center;
  }
  .abt-hero-mandala {
    width: 260px;
    height: 260px;
    right: -80px;
    opacity: 0.15;
  }
}
/* ════════════════════════════
   ABOUT PAGE
════════════════════════════ */
/* ── Shared Tag ── */
.abt-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #e8232a;
  background: #fff0f0;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 12px;
}

.abt-tag-light {
  color: #ffaaaa;
  background: rgba(255, 255, 255, 0.12);
}

/* ── Shared Heading Block ── */
.abt-mv-header {
  text-align: center;
  margin-bottom: 48px;
}

.abt-mv-header h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.abt-mv-header h2 span {
  color: #e8232a;
}

.abt-mv-header p {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
}

.abt-mv-header-light h2 {
  color: #fff;
}

.abt-mv-header-light p {
  color: rgba(255, 255, 255, 0.7);
}

/* ════════════════════════════
   HERO
════════════════════════════ */
.abt-hero {
  position: relative;
  background: linear-gradient(135deg, #8b0030 0%, #e8232a 50%, #ff6363 100%);
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.abt-hero-overlay {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1511285560929-80b456fea0bc?w=1600&q=40") center/cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

.abt-hero-mandala {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  pointer-events: none;
  z-index: 0;
}

.abt-mandala-svg {
  width: 100%;
  height: 100%;
  animation: abtRotate 40s linear infinite;
}

@keyframes abtRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.abt-hero .container {
  position: relative;
  z-index: 1;
}

.abt-hero-content {
  max-width: 680px;
}

.abt-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.abt-hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.abt-hero-content h1 span {
  color: #ffe0e0;
}

.abt-hero-content > p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 20px;
}

.abt-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.abt-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.abt-hero-breadcrumb a:hover {
  color: #fff;
}

/* ════════════════════════════
   WHO WE ARE
════════════════════════════ */
.abt-who {
  padding: 80px 0;
  background: #fdf3e8;
}

.abt-who-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.abt-who-img-col {
  flex: 0 0 44%;
  max-width: 44%;
}

.abt-who-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.abt-who-img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Floating badges */
.abt-who-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  min-width: 155px;
  animation: abtFloat 3s ease-in-out infinite;
}

.abt-badge-1 {
  bottom: 36px;
  left: -28px;
  animation-delay: 0s;
}

.abt-badge-2 {
  top: 40px;
  right: -28px;
  animation-delay: 1.5s;
}

@keyframes abtFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
.abt-badge-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.abt-who-badge strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
}

.abt-who-badge span {
  display: block;
  font-size: 0.72rem;
  color: #888;
  white-space: nowrap;
}

.abt-who-exp {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #e8232a, #ff6363);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(232, 35, 42, 0.35);
  animation: abtFloat 3.5s ease-in-out infinite;
  animation-delay: 0.8s;
}

.abt-who-exp strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.abt-who-exp span {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.3;
}

/* Content col */
.abt-who-content {
  flex: 1;
}

.abt-who-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 16px;
}

.abt-who-content h2 span {
  color: #e8232a;
}

.abt-who-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 14px;
}

.abt-who-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.abt-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  border: 1px solid #f0e8dc;
  transition: box-shadow 0.2s, transform 0.2s;
}

.abt-feature-item:hover {
  box-shadow: 0 4px 16px rgba(232, 35, 42, 0.1);
  transform: translateY(-2px);
}

.abt-fi-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: #fff0f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-fi-icon svg {
  width: 20px;
  height: 20px;
}

.abt-feature-item h6 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 3px;
}

.abt-feature-item p {
  font-size: 0.75rem;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

/* ════════════════════════════
   STATS
════════════════════════════ */
.abt-stats-section {
  position: relative;
  background: linear-gradient(135deg, #8b0030, #e8232a);
  padding: 64px 0;
  overflow: hidden;
}

.abt-stats-overlay {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1519741497674-611481863552?w=1600&q=40") center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.abt-stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.abt-stat-item {
  text-align: center;
  padding: 20px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.abt-stat-item:last-child {
  border-right: none;
}

.abt-stat-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.abt-stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: inline;
}

.abt-stat-plus {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffd0d0;
  display: inline;
}

.abt-stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
  font-weight: 500;
}

/* ════════════════════════════
   MISSION VISION VALUES
════════════════════════════ */
.abt-mv-section {
  padding: 80px 0;
  background: #fff;
}

.abt-mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.abt-mv-card {
  border-radius: 18px;
  padding: 32px 28px;
  border: 1.5px solid #f0f0f0;
  transition: transform 0.25s, box-shadow 0.25s;
}

.abt-mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
}

.abt-mission {
  background: #fff5f5;
  border-color: #ffd0d0;
}

.abt-vision {
  background: #f0f8ff;
  border-color: #c8e6ff;
}

.abt-values {
  background: #f5fff5;
  border-color: #c8e8c8;
}

.abt-mv-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.abt-mv-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.abt-mv-line {
  width: 36px;
  height: 3px;
  background: #e8232a;
  border-radius: 2px;
  margin-bottom: 14px;
}

.abt-vision .abt-mv-line {
  background: #3498db;
}

.abt-values .abt-mv-line {
  background: #27ae60;
}

.abt-mv-card p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 16px;
}

.abt-mv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abt-mv-list li {
  font-size: 0.82rem;
  color: #555;
  font-weight: 500;
}

/* ════════════════════════════
   HOW IT WORKS
════════════════════════════ */
.abt-hiw-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.abt-hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.abt-hiw-item {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid #f0f0f0;
  position: relative;
  margin: 0 8px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.abt-hiw-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(232, 35, 42, 0.1);
  border-color: #ffd0d0;
}

.abt-hiw-num {
  font-size: 3rem;
  font-weight: 900;
  color: #f5e0e0;
  line-height: 1;
  margin-bottom: 8px;
}

.abt-hiw-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.abt-hiw-item h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.abt-hiw-item p {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.7;
  margin: 0;
}

.abt-hiw-arrow {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #e8232a;
  font-weight: 700;
  z-index: 2;
}

.abt-hiw-item:last-child .abt-hiw-arrow {
  display: none;
}

/* ════════════════════════════
   WHY CHOOSE US
════════════════════════════ */
.abt-why-section {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 80px 0;
  overflow: hidden;
}

.abt-why-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(232, 35, 42, 0.12) 0%, transparent 60%), radial-gradient(circle at 80% 50%, rgba(52, 152, 219, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.abt-why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.abt-why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.abt-why-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(232, 35, 42, 0.4);
  transform: translateY(-3px);
}

.abt-why-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.abt-why-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.abt-why-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

/* ════════════════════════════
   TEAM
════════════════════════════ */
.abt-team-section {
  padding: 80px 0;
  background: #fff;
}

.abt-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.abt-team-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #f0f0f0;
  padding: 24px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.abt-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(232, 35, 42, 0.1);
  border-color: #ffd0d0;
}

.abt-team-img {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
}

.abt-team-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 50%;
  border: 3px solid #ffd0d0;
}

.abt-team-social {
  position: absolute;
  inset: 0;
  background: rgba(232, 35, 42, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.abt-team-card:hover .abt-team-social {
  opacity: 1;
}

.abt-team-social a {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
}

.abt-team-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.abt-team-card > span {
  font-size: 0.78rem;
  color: #e8232a;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.abt-team-card p {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.65;
  margin: 0;
}

/* ════════════════════════════
   CTA
════════════════════════════ */
.abt-cta-section {
  position: relative;
  background: linear-gradient(135deg, #e8232a, #8b0030);
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}

.abt-cta-mandala {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
}

.abt-cta-mandala-svg {
  width: 100%;
  height: 100%;
  animation: abtRotate 50s linear infinite reverse;
}

.abt-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.abt-cta-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.abt-cta-inner h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.abt-cta-inner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 28px;
}

.abt-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.abt-cta-btn-primary {
  background: #fff;
  color: #e8232a;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.abt-cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  color: #e8232a;
}

.abt-cta-btn-outline {
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.abt-cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.abt-cta-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1100px) {
  .abt-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .abt-hiw-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .abt-hiw-arrow {
    display: none;
  }
  .abt-hiw-item {
    margin: 0;
  }
  .abt-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .abt-who-wrap {
    flex-direction: column;
    gap: 48px;
  }
  .abt-who-img-col {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }
  .abt-who-img {
    height: 320px;
  }
  .abt-who-features {
    grid-template-columns: 1fr;
  }
  .abt-mv-grid {
    grid-template-columns: 1fr;
  }
  .abt-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .abt-hero-content h1 {
    font-size: 2.2rem;
  }
  .abt-badge-2 {
    right: -12px;
    top: 20px;
  }
  .abt-badge-1 {
    left: -12px;
  }
}
@media (max-width: 600px) {
  .abt-hero {
    padding: 80px 0 60px;
  }
  .abt-hero-content h1 {
    font-size: 1.7rem;
  }
  .abt-hero-mandala {
    width: 240px;
    height: 240px;
    right: -80px;
    opacity: 0.12;
  }
  .abt-who {
    padding: 48px 0;
  }
  .abt-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .abt-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .abt-hiw-grid {
    grid-template-columns: 1fr;
  }
  .abt-why-grid {
    grid-template-columns: 1fr;
  }
  .abt-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .abt-cta-inner h2 {
    font-size: 1.6rem;
  }
  .abt-cta-btns {
    flex-direction: column;
  }
  .abt-cta-btn-primary,
  .abt-cta-btn-outline {
    width: 100%;
    text-align: center;
  }
  .abt-mv-section,
  .abt-hiw-section,
  .abt-why-section,
  .abt-team-section,
  .abt-cta-section {
    padding: 48px 0;
  }
}
/* ════════════════════════════
   REGISTER HERO — DARK NAVY
════════════════════════════ */
.reg-hero {
  position: relative;
  background: linear-gradient(135deg, #0f1626 0%, #16213e 55%, #1a2a52 100%);
  padding: 90px 0 75px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}

/* ── Radial overlay ── */
.reg-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(232, 35, 42, 0.1) 0%, transparent 55%), radial-gradient(ellipse at 100% 100%, rgba(52, 152, 219, 0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* ── Glow blobs ── */
.reg-hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

.reg-glow-1 {
  width: 380px;
  height: 380px;
  background: rgba(232, 35, 42, 0.11);
  top: -100px;
  left: -80px;
  animation: regGlowPulse 6s ease-in-out infinite;
}

.reg-glow-2 {
  width: 280px;
  height: 280px;
  background: rgba(52, 152, 219, 0.08);
  bottom: -60px;
  right: 240px;
  animation: regGlowPulse 8s ease-in-out infinite;
  animation-delay: 2.5s;
}

@keyframes regGlowPulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}
/* ── Mandala ── */
.reg-hero-mandala {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.reg-mandala-svg {
  width: 100%;
  height: 100%;
  animation: regRotate 40s linear infinite;
}

@keyframes regRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ── Container & layout ── */
.reg-hero .container {
  position: relative;
  z-index: 1;
}

.reg-hero-content {
  max-width: 700px;
}

/* ── Tag pill ── */
.reg-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #ff8f8f;
  background: rgba(232, 35, 42, 0.15);
  border: 1px solid rgba(232, 35, 42, 0.3);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

/* ── Heading ── */
.reg-hero-content h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.reg-hero-content h1 span {
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
}

/* ── Sub text ── */
.reg-hero-content > p {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 540px;
}

/* ── Breadcrumb ── */
.reg-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.reg-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.reg-hero-breadcrumb a:hover {
  color: #fff;
}

.reg-hero-breadcrumb span:last-child {
  color: #ff8f8f;
  font-weight: 600;
}

/* ── Quick stats bar ── */
.reg-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 12px 28px;
  flex-wrap: wrap;
}

.reg-hs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.reg-hs-item strong {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

.reg-hs-item span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  white-space: nowrap;
}

.reg-hs-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 992px) {
  .reg-hero-content h1 {
    font-size: 2.1rem;
  }
  .reg-hero-mandala {
    width: 340px;
    height: 340px;
    right: -80px;
  }
}
@media (max-width: 768px) {
  .reg-hero {
    padding: 80px 0 60px;
  }
  .reg-hero-content h1 {
    font-size: 1.8rem;
  }
  .reg-hero-stats {
    gap: 8px;
    padding: 10px 16px;
  }
  .reg-hs-item {
    padding: 0 12px;
  }
  .reg-hero-mandala {
    width: 260px;
    height: 260px;
    right: -80px;
    opacity: 0.3;
  }
}
@media (max-width: 480px) {
  .reg-hero-content h1 {
    font-size: 1.5rem;
  }
  .reg-hero-content h1 span {
    font-size: 1rem;
  }
  .reg-hero-stats {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
    padding: 14px 10px;
  }
  .reg-hs-divider {
    display: none;
  }
  .reg-hs-item {
    padding: 6px 14px;
  }
  .reg-hero-mandala {
    display: none;
  }
}
/* ════════════════════════════
   PRIVACY POLICY PAGE
════════════════════════════ */
/* ── HERO ── */
.pp-hero {
  position: relative;
  background: linear-gradient(135deg, #0f1626 0%, #16213e 55%, #1a2a52 100%);
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.pp-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(232, 35, 42, 0.1) 0%, transparent 55%), radial-gradient(ellipse at 100% 100%, rgba(52, 152, 219, 0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.pp-hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

.pp-glow-1 {
  width: 380px;
  height: 380px;
  background: rgba(232, 35, 42, 0.1);
  top: -100px;
  left: -80px;
  animation: ppGlowPulse 6s ease-in-out infinite;
}

.pp-glow-2 {
  width: 280px;
  height: 280px;
  background: rgba(52, 152, 219, 0.08);
  bottom: -60px;
  right: 200px;
  animation: ppGlowPulse 8s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes ppGlowPulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
.pp-hero-mandala {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.pp-mandala-svg {
  width: 100%;
  height: 100%;
  animation: ppRotate 40s linear infinite;
}

@keyframes ppRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.pp-hero .container {
  position: relative;
  z-index: 1;
}

.pp-hero-content {
  max-width: 680px;
}

.pp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #ff8f8f;
  background: rgba(232, 35, 42, 0.15);
  border: 1px solid rgba(232, 35, 42, 0.3);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 18px;
}

.pp-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.pp-hero-content h1 span {
  background: linear-gradient(90deg, #ff6363, #e8232a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pp-hero-content > p {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 520px;
}

.pp-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.pp-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.pp-hero-breadcrumb a:hover {
  color: #fff;
}

.pp-hero-breadcrumb span:last-child {
  color: #ff8f8f;
  font-weight: 600;
}

.pp-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.pp-hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── MAIN SECTION ── */
.pp-section {
  padding: 60px 0 80px;
  background: #f6f6f6;
}

/* ── LAYOUT ── */
.pp-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: flex-start;
}

/* ════════════════════════════
   SIDEBAR
════════════════════════════ */
.pp-sidebar {
  position: sticky;
  top: 90px;
}

.pp-toc {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #f0f0f0;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pp-toc-title {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pp-toc-nav {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
}

.pp-toc-link {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
  padding: 8px 18px;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.2s;
  line-height: 1.4;
}

.pp-toc-link:hover {
  color: #e8232a;
  background: #fff5f5;
  border-left-color: #e8232a;
}

.pp-toc-link.active {
  color: #e8232a;
  background: #fff5f5;
  border-left-color: #e8232a;
  font-weight: 700;
}

.pp-summary-card {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.pp-sc-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pp-sc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pp-sc-list li {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ════════════════════════════
   CONTENT BLOCKS
════════════════════════════ */
.pp-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pp-block {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1.5px solid #f0f0f0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  scroll-margin-top: 100px;
}

.pp-block-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid #f5f5f5;
}

.pp-block-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.pp-block-header h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.pp-block p {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}

.pp-block p:last-child {
  margin-bottom: 0;
}

/* Highlight boxes */
.pp-highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.845rem;
  line-height: 1.7;
  margin-top: 16px;
  background: #fff8e1;
  border-left: 4px solid #f39c12;
  color: #7d5a00;
}

.pp-hb-blue {
  background: #e8f4fd;
  border-color: #3498db;
  color: #1a6b9a;
}

.pp-hb-green {
  background: #eafaf1;
  border-color: #27ae60;
  color: #1a6b3a;
}

.pp-hb-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Data Cards Grid ── */
.pp-data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0;
}

.pp-data-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 16px;
  border: 1.5px solid #f0f0f0;
  transition: border-color 0.2s, transform 0.2s;
}

.pp-data-card:hover {
  border-color: #e8232a;
  transform: translateY(-2px);
}

.pp-dc-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pp-data-card h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.pp-data-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pp-data-card ul li {
  font-size: 0.78rem;
  color: #777;
  padding: 3px 0;
  border-bottom: 1px solid #f0f0f0;
}

.pp-data-card ul li:last-child {
  border-bottom: none;
}

/* ── Use List ── */
.pp-use-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.pp-use-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 12px;
  border: 1.5px solid #f0f0f0;
  transition: border-color 0.2s;
}

.pp-use-item:hover {
  border-color: #e8232a;
}

.pp-use-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffe0e0;
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}

.pp-use-item h6 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.pp-use-item p {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* ── Table ── */
.pp-table-wrap {
  overflow-x: auto;
  margin: 18px 0;
  border-radius: 12px;
  border: 1.5px solid #f0f0f0;
}

.pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.83rem;
}

.pp-table thead tr {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.pp-table thead th {
  padding: 14px 16px;
  color: #fff;
  font-weight: 700;
  text-align: left;
  font-size: 0.78rem;
  white-space: nowrap;
}

.pp-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
}

.pp-table tbody tr:last-child {
  border-bottom: none;
}

.pp-table tbody tr:hover {
  background: #fff8f8;
}

.pp-table tbody td {
  padding: 12px 16px;
  color: #555;
  line-height: 1.5;
}

/* ── Security Grid ── */
.pp-security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.pp-sec-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 12px;
  border: 1.5px solid #f0f0f0;
}

.pp-sec-item > span {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pp-sec-item h6 {
  font-size: 0.845rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.pp-sec-item p {
  font-size: 0.78rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* ── Cookie Types ── */
.pp-cookie-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.pp-cookie-item {
  padding: 16px;
  border-radius: 12px;
  border-left: 4px solid;
}

.pp-ck-essential {
  background: #eafaf1;
  border-color: #27ae60;
}

.pp-ck-analytics {
  background: #eaf3fb;
  border-color: #3498db;
}

.pp-ck-pref {
  background: #fff8e1;
  border-color: #f39c12;
}

.pp-ck-marketing {
  background: #fdf2f8;
  border-color: #9b59b6;
}

.pp-cookie-item h6 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.pp-cookie-item p {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ── Rights Grid ── */
.pp-rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0;
}

.pp-right-item {
  text-align: center;
  padding: 20px 14px;
  background: #f9f9f9;
  border-radius: 12px;
  border: 1.5px solid #f0f0f0;
  transition: border-color 0.2s, transform 0.2s;
}

.pp-right-item:hover {
  border-color: #e8232a;
  transform: translateY(-2px);
}

.pp-ri-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.pp-right-item h6 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.pp-right-item p {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.6;
  margin: 0;
}

/* ── Retention ── */
.pp-retention-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.pp-ret-item {
  display: grid;
  grid-template-columns: 200px 1fr 160px;
  align-items: center;
  gap: 14px;
}

.pp-ret-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
}

.pp-ret-bar {
  height: 8px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
}

.pp-ret-fill {
  height: 100%;
  background: linear-gradient(90deg, #e8232a, #ff6363);
  border-radius: 10px;
  transition: width 1s ease;
}

.pp-ret-duration {
  font-size: 0.78rem;
  color: #888;
  font-weight: 500;
  text-align: right;
}

/* ── List ── */
.pp-list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.pp-list li {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.pp-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #e8232a;
  font-weight: 700;
  font-size: 1rem;
}

/* ── Contact Card ── */
.pp-contact-card {
  background: #f9f9f9;
  border-radius: 14px;
  border: 1.5px solid #f0f0f0;
  overflow: hidden;
  margin-top: 16px;
}

.pp-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.pp-contact-row:last-child {
  border-bottom: none;
}

.pp-cr-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pp-contact-row strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.pp-contact-row span,
.pp-contact-row a {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
}

/* ── Link style ── */
.pp-link {
  color: #e8232a;
  text-decoration: none;
  font-weight: 600;
}

.pp-link:hover {
  text-decoration: underline;
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1100px) {
  .pp-layout {
    grid-template-columns: 240px 1fr;
  }
  .pp-rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pp-data-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .pp-layout {
    grid-template-columns: 1fr;
  }
  .pp-sidebar {
    position: static;
  }
  .pp-toc {
    display: none;
  }
  .pp-summary-card {
    display: none;
  }
  .pp-ret-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .pp-ret-duration {
    text-align: left;
  }
}
@media (max-width: 700px) {
  .pp-hero-content h1 {
    font-size: 2rem;
  }
  .pp-hero-mandala {
    display: none;
  }
  .pp-block {
    padding: 20px 16px;
  }
  .pp-data-grid {
    grid-template-columns: 1fr;
  }
  .pp-security-grid {
    grid-template-columns: 1fr;
  }
  .pp-cookie-types {
    grid-template-columns: 1fr;
  }
  .pp-rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .pp-rights-grid {
    grid-template-columns: 1fr;
  }
}
/* ════════════════════════════
   TERMS & CONDITIONS PAGE
   New Design — Different from Privacy
════════════════════════════ */
/* ════════════════════════════
   HERO — RED GRADIENT (vs navy in Privacy)
════════════════════════════ */
.tc-hero {
  position: relative;
  background: linear-gradient(135deg, #6b0014 0%, #b71c1c 45%, #e8232a 100%);
  padding: 90px 0 70px;
  overflow: hidden;
  min-height: 380px;
}

.tc-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.tc-hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
}

.tc-glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  top: -100px;
  right: 100px;
  animation: tcGlow 7s ease-in-out infinite;
}

.tc-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 0, 0, 0.2);
  bottom: -60px;
  left: 10%;
  animation: tcGlow 9s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes tcGlow {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
/* Hero inner — two column */
.tc-hero .container {
  position: relative;
  z-index: 1;
}

.tc-hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.tc-hero-left {
  flex: 1;
  min-width: 300px;
}

.tc-hero-right {
  flex: 0 0 340px;
  max-width: 340px;
}

.tc-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

.tc-hero-left h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.tc-hero-left h1 span {
  color: #ffe0e0;
}

.tc-hero-left > p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 480px;
}

.tc-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.tc-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.tc-hero-breadcrumb a:hover {
  color: #fff;
}

/* Meta items */
.tc-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tc-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 10px 14px;
}

.tc-meta-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.tc-meta-item strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.tc-meta-item span {
  display: block;
  font-size: 0.82rem;
  color: #fff;
  font-weight: 600;
  margin-top: 2px;
}

/* Scroll card */
.tc-scroll-card {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  overflow: hidden;
}

.tc-sc-header {
  background: rgba(255, 255, 255, 0.12);
  padding: 14px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tc-sc-list {
  list-style: none;
  padding: 14px 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tc-sc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.tc-sc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.tc-dot-green {
  background: #2ecc71;
}

.tc-dot-yellow {
  background: #f39c12;
}

.tc-dot-red {
  background: #ff6b6b;
}

.tc-sc-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 20px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* ════════════════════════════
   MAIN SECTION
════════════════════════════ */
.tc-section {
  padding: 0 0 80px;
  background: #f4f4f4;
}

/* Reading progress bar */
.tc-progress-wrap {
  height: 4px;
  background: #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 99;
  margin-bottom: 0;
}

.tc-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #e8232a, #ff6363);
  transition: width 0.1s linear;
}

/* Layout */
.tc-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  align-items: flex-start;
  padding-top: 36px;
}

/* ════════════════════════════
   SIDEBAR
════════════════════════════ */
.tc-sidebar {
  position: sticky;
  top: 100px;
}

.tc-toc {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #eee;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.tc-toc-title {
  background: linear-gradient(135deg, #b71c1c, #e8232a);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tc-toc-nav {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}

.tc-toc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.775rem;
  color: #666;
  font-weight: 500;
  padding: 7px 16px;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.2s;
  line-height: 1.3;
}

.tc-toc-link span {
  font-size: 0.65rem;
  font-weight: 800;
  color: #ccc;
  min-width: 18px;
  transition: color 0.2s;
}

.tc-toc-link:hover {
  color: #e8232a;
  background: #fff5f5;
  border-left-color: #e8232a;
}

.tc-toc-link:hover span {
  color: #e8232a;
}

.tc-toc-link.active {
  color: #e8232a;
  background: #fff5f5;
  border-left-color: #e8232a;
  font-weight: 700;
}

.tc-toc-link.active span {
  color: #e8232a;
}

.tc-legal-links {
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid #eee;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.tc-ll-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.tc-ll-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: #555;
  font-weight: 500;
  padding: 10px 16px;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.2s;
}

.tc-ll-link:last-child {
  border-bottom: none;
}

.tc-ll-link:hover {
  color: #e8232a;
  background: #fff5f5;
}

/* ════════════════════════════
   CONTENT BLOCKS
   Numbered left-border design
════════════════════════════ */
.tc-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tc-block {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  scroll-margin-top: 80px;
  transition: border-color 0.2s;
}

.tc-block:hover {
  border-color: #ffd0d0;
}

.tc-block-num {
  flex-shrink: 0;
  width: 64px;
  background: linear-gradient(180deg, #fff5f5 0%, #ffe0e0 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 28px;
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffb3b3;
  line-height: 1;
  border-right: 1.5px solid #ffd0d0;
}

.tc-block-body {
  flex: 1;
  padding: 28px 30px;
}

.tc-block-body h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid #f5f5f5;
}

.tc-block-body p {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

.tc-block-body p:last-child {
  margin-bottom: 0;
}

/* Notice boxes */
.tc-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.84rem;
  line-height: 1.7;
  margin-top: 14px;
}

.tc-notice > span {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.tc-notice-red {
  background: #fff5f5;
  border-left: 4px solid #e8232a;
  color: #7a1a1a;
}

.tc-notice-blue {
  background: #e8f4fd;
  border-left: 4px solid #3498db;
  color: #1a5a8a;
}

.tc-notice-yellow {
  background: #fff8e1;
  border-left: 4px solid #f39c12;
  color: #7a5200;
}

.tc-notice a {
  color: inherit;
  font-weight: 700;
}

/* Eligibility grid */
.tc-eligibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}

.tc-elig-card {
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  border: 2px solid;
}

.tc-elig-male {
  background: #eaf4fd;
  border-color: #aed6f1;
}

.tc-elig-female {
  background: #fdf2f8;
  border-color: #d7bde2;
}

.tc-elig-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.tc-elig-card h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.tc-elig-age {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.tc-elig-male .tc-elig-age {
  color: #2980b9;
}

.tc-elig-female .tc-elig-age {
  color: #8e44ad;
}

.tc-elig-card p {
  font-size: 0.78rem;
  color: #777;
  line-height: 1.5;
  margin: 0;
}

/* Two-col do/don't */
.tc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0;
}

.tc-col-card {
  border-radius: 12px;
  padding: 16px;
  border: 1.5px solid;
}

.tc-col-do {
  background: #eafaf1;
  border-color: #a9dfbf;
}

.tc-col-dont {
  background: #fdedec;
  border-color: #f1948a;
}

.tc-col-card h6 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.tc-col-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.tc-col-card ul li {
  font-size: 0.78rem;
  color: #555;
  line-height: 1.5;
}

/* Plan table */
.tc-plan-table {
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid #eee;
  margin: 16px 0;
}

.tc-plan-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid #f0f0f0;
}

.tc-plan-row:last-child {
  border-bottom: none;
}

.tc-plan-head {
  background: linear-gradient(135deg, #b71c1c, #e8232a);
}

.tc-plan-head span {
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tc-plan-row:not(.tc-plan-head) span {
  padding: 11px 16px;
  font-size: 0.82rem;
  color: #555;
  display: flex;
  align-items: center;
}

.tc-plan-row:not(.tc-plan-head):hover {
  background: #fff8f8;
}

.tc-yes {
  color: #27ae60 !important;
  font-weight: 700;
  font-size: 1rem !important;
}

.tc-no {
  color: #e74c3c !important;
  font-weight: 700;
  font-size: 1rem !important;
}

/* Prohibited grid */
.tc-prohibit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.tc-prohibit-item {
  background: #fff5f5;
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  border: 1.5px solid #ffd0d0;
  transition: transform 0.2s, border-color 0.2s;
}

.tc-prohibit-item:hover {
  transform: translateY(-2px);
  border-color: #e8232a;
}

.tc-pi-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-prohibit-item h6 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.tc-prohibit-item p {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.55;
  margin: 0;
}

/* Communication rules */
.tc-comm-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.tc-cr-item {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 16px;
  border: 1.5px solid #eee;
}

.tc-cr-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.tc-cr-green {
  background: #d5f5e3;
  color: #1e8449;
}

.tc-cr-red {
  background: #fadbd8;
  color: #922b21;
}

.tc-cr-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.tc-cr-item ul li {
  font-size: 0.79rem;
  color: #555;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.tc-cr-item ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #999;
}

/* Liability grid */
.tc-liability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 14px 0;
}

.tc-liability-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 14px;
  border: 1.5px solid #eee;
  font-size: 0.8rem;
  color: #555;
}

.tc-liability-item span {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Steps (dispute resolution) */
.tc-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 14px;
}

.tc-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

.tc-step:last-child {
  border-bottom: none;
}

.tc-step-num {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: linear-gradient(135deg, #e8232a, #ff6363);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.tc-step h6 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.tc-step p {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.65;
  margin: 0;
}

.tc-step a {
  color: #e8232a;
  font-weight: 600;
}

/* Law grid */
.tc-law-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 14px 0;
}

.tc-law-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 14px;
  border: 1.5px solid #eee;
}

.tc-law-item > span {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.tc-law-item h6 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.tc-law-item p {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

/* Contact grid */
.tc-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.tc-contact-item {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  border: 1.5px solid #eee;
  transition: border-color 0.2s, transform 0.2s;
}

.tc-contact-item:hover {
  border-color: #e8232a;
  transform: translateY(-2px);
}

.tc-ci-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.tc-contact-item h6 {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.tc-contact-item span,
.tc-contact-item a {
  font-size: 0.76rem;
  color: #888;
  line-height: 1.5;
  word-break: break-all;
}

.tc-contact-item a {
  color: #e8232a;
  text-decoration: none;
  font-weight: 600;
}

/* List */
.tc-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tc-list li {
  font-size: 0.86rem;
  color: #555;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.tc-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #e8232a;
  font-weight: 800;
  font-size: 1rem;
}

/* Link */
.tc-link {
  color: #e8232a;
  text-decoration: none;
  font-weight: 600;
}

.tc-link:hover {
  text-decoration: underline;
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1100px) {
  .tc-layout {
    grid-template-columns: 230px 1fr;
  }
  .tc-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tc-prohibit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .tc-layout {
    grid-template-columns: 1fr;
  }
  .tc-sidebar {
    position: static;
  }
  .tc-toc {
    display: none;
  }
  .tc-legal-links {
    display: none;
  }
  .tc-hero-right {
    display: none;
  }
}
@media (max-width: 700px) {
  .tc-hero-left h1 {
    font-size: 2rem;
  }
  .tc-hero-meta {
    gap: 10px;
  }
  .tc-block-num {
    width: 44px;
    font-size: 1.1rem;
    padding-top: 22px;
  }
  .tc-block-body {
    padding: 20px 16px;
  }
  .tc-eligibility-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tc-two-col {
    grid-template-columns: 1fr;
  }
  .tc-prohibit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tc-comm-rules {
    grid-template-columns: 1fr;
  }
  .tc-liability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tc-law-grid {
    grid-template-columns: 1fr;
  }
  .tc-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .tc-prohibit-grid {
    grid-template-columns: 1fr;
  }
  .tc-eligibility-grid {
    grid-template-columns: 1fr;
  }
  .tc-liability-grid {
    grid-template-columns: 1fr;
  }
  .tc-contact-grid {
    grid-template-columns: 1fr;
  }
  .tc-block-num {
    display: none;
  }
  .tc-block-body {
    padding: 18px 14px;
  }
}
/* ════════════════════════════
   COOKIE POLICY — MATRIMONY FEEL
   Saffron + Maroon warm palette
════════════════════════════ */
/* ══ HERO ══ */
.ck-hero {
  position: relative;
  background: linear-gradient(135deg, #4a0010 0%, #7b1c2e 28%, #b5451b 62%, #d4852e 100%);
  padding: 95px 0 80px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  text-align: center;
}

/* Rangoli SVG */
.ck-hero-rangoli {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.ck-rangoli-svg {
  width: 720px;
  height: 720px;
  opacity: 0.5;
  animation: ckRangoliSpin 70s linear infinite;
}

@keyframes ckRangoliSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Floating cultural emojis */
.ck-float {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  font-size: 1.5rem;
  opacity: 0.3;
}

.ck-float-1 {
  top: 16%;
  left: 5%;
  animation: ckFloatA 4s ease-in-out infinite;
}

.ck-float-2 {
  top: 10%;
  left: 16%;
  animation: ckFloatB 5s ease-in-out infinite;
}

.ck-float-3 {
  top: 14%;
  right: 14%;
  animation: ckFloatB 4.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.ck-float-4 {
  top: 58%;
  right: 6%;
  animation: ckFloatA 5.5s ease-in-out infinite;
  animation-delay: 2s;
}

.ck-float-5 {
  top: 62%;
  left: 3%;
  animation: ckFloatA 6s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes ckFloatA {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(8deg);
  }
}
@keyframes ckFloatB {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-8deg);
  }
}
/* Glow blobs */
.ck-hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

.ck-glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 200, 100, 0.1);
  top: -100px;
  left: -60px;
  animation: ckGlowPulse 7s ease-in-out infinite;
}

.ck-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 0, 0, 0.18);
  bottom: -80px;
  right: 10%;
  animation: ckGlowPulse 9s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes ckGlowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
/* Hero content */
.ck-hero .container {
  position: relative;
  z-index: 1;
}

.ck-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

/* Ornament divider */
.ck-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.ck-ornament-bot {
  margin-top: 24px;
  margin-bottom: 0;
}

.ck-orn-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.ck-orn-sym {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.ck-orn-main {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Tag pill */
.ck-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

/* Heading */
.ck-hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.ck-hero h1 span {
  background: linear-gradient(90deg, #ffd89b, #f5a623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Matrimony tagline */
.ck-hero-tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 18px;
}

.ck-tl-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.ck-tl-trans {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Sub-text */
.ck-hero-inner > p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Breadcrumb */
.ck-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

.ck-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.ck-hero-breadcrumb a:hover {
  color: #fff;
}

/* Pills */
.ck-hero-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ck-hero-pills span {
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 5px 13px;
}

/* ══ SHARED TAG ══ */
.ck-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #b5451b;
  background: #fdf0e8;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 10px;
}

.ck-tag-light {
  color: #d4852e;
  background: rgba(212, 133, 46, 0.15);
  border: 1px solid rgba(212, 133, 46, 0.3);
}

/* ══ SECTION HEADER ══ */
.ck-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.ck-section-header h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.ck-section-header h2 span {
  color: #b5451b;
}

.ck-section-header p {
  font-size: 0.875rem;
  color: #888;
}

/* ══ COOKIE TYPE CARDS ══ */
.ck-types-section {
  padding: 70px 0;
  background: #fdf6ee;
}

.ck-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ck-type-card {
  border-radius: 18px;
  padding: 22px 18px;
  border: 2px solid;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.ck-type-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0.12;
  transition: transform 0.3s;
}

.ck-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

.ck-type-card:hover::before {
  transform: scale(1.5);
}

.ck-essential {
  background: #fef9f0;
  border-color: #f5d99b;
}

.ck-essential::before {
  background: #f5a623;
}

.ck-analytics {
  background: #f0f4ff;
  border-color: #b3c6f5;
}

.ck-analytics::before {
  background: #4285f4;
}

.ck-preference {
  background: #f0fff8;
  border-color: #a8e6c8;
}

.ck-preference::before {
  background: #27ae60;
}

.ck-marketing {
  background: #fdf0f8;
  border-color: #e8b3d6;
}

.ck-marketing::before {
  background: #9b59b6;
}

.ck-tc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.ck-tc-icon {
  font-size: 2rem;
}

.ck-tc-badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  padding: 3px 9px;
}

.ck-badge-on {
  background: #c8e6c9;
  color: #1b5e20;
}

.ck-badge-opt {
  background: #fff3cd;
  color: #7a5200;
}

.ck-type-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.ck-type-card > p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

.ck-tc-toggle-btn {
  font-size: 0.74rem;
  font-weight: 700;
  color: #b5451b;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Expandable detail */
.ck-tc-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.ck-tc-detail.open {
  max-height: 300px;
  padding-top: 14px;
}

.ck-tc-detail ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.ck-tc-detail ul li {
  font-size: 0.76rem;
  color: #555;
  line-height: 1.7;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.07);
}

.ck-tc-detail ul li:last-child {
  border-bottom: none;
}

.ck-tc-detail code {
  background: rgba(0, 0, 0, 0.06);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #c0392b;
  font-weight: 600;
}

.ck-detail-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.7rem;
  color: #999;
  font-weight: 600;
}

/* ══ CONSENT SECTION ══ */
.ck-consent-section {
  position: relative;
  background: linear-gradient(135deg, #3d0010 0%, #7b1c2e 50%, #b5451b 100%);
  padding: 70px 0;
  overflow: hidden;
}

.ck-consent-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.ck-consent-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.ck-consent-left {
  flex: 1;
  min-width: 280px;
}

.ck-consent-right {
  flex: 0 0 380px;
  max-width: 380px;
}

.ck-consent-left h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}

.ck-consent-left h2 span {
  color: #ffd89b;
}

.ck-consent-left p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 12px;
}

.ck-btn-manage {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  background: #fff;
  color: #b5451b;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ck-btn-manage:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: #b5451b;
}

/* Mock Banner */
.ck-mock-banner {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.ck-mb-header {
  background: linear-gradient(135deg, #7b1c2e, #b5451b);
  padding: 14px 18px;
}

.ck-mb-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ck-mb-brand span {
  font-size: 1.8rem;
}

.ck-mb-brand strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 700;
}

.ck-mb-brand small {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}

.ck-mb-desc {
  padding: 14px 18px 0;
  font-size: 0.8rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.ck-mb-toggles {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ck-mb-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ck-mbt-info span {
  font-size: 0.82rem;
  color: #333;
  font-weight: 600;
  display: block;
}

.ck-mbt-info small {
  font-size: 0.7rem;
  color: #aaa;
}

/* Toggle switch */
.ck-toggle {
  width: 44px;
  height: 24px;
  background: #e0e0e0;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background 0.25s;
  flex-shrink: 0;
}

.ck-toggle-on {
  background: linear-gradient(90deg, #7b1c2e, #b5451b);
}

.ck-toggle-locked {
  opacity: 0.7;
  cursor: not-allowed;
}

.ck-toggle-dot {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.25s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.ck-toggle-on .ck-toggle-dot {
  transform: translateX(20px);
}

.ck-mb-btns {
  padding: 10px 18px 14px;
  display: flex;
  gap: 10px;
}

.ck-mb-all {
  flex: 1;
  background: linear-gradient(135deg, #7b1c2e, #b5451b);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.ck-mb-all:hover {
  opacity: 0.88;
}

.ck-mb-save {
  flex: 1;
  background: transparent;
  color: #b5451b;
  border: 1.5px solid #b5451b;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.ck-mb-save:hover {
  background: #fdf0e8;
}

.ck-mb-footer {
  text-align: center;
  font-size: 0.72rem;
  color: #aaa;
  padding: 0 18px 14px;
}

/* ══ POLICY SECTION ══ */
.ck-policy-section {
  padding: 60px 0 80px;
  background: #f5f0eb;
}

.ck-policy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: flex-start;
}

/* ── Sidebar ── */
.ck-sidebar {
  position: sticky;
  top: 90px;
}

.ck-toc {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #ede0d4;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.ck-toc-header {
  background: linear-gradient(135deg, #4a0010, #b5451b);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ck-toc-nav {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}

.ck-toc-link {
  font-size: 0.79rem;
  color: #666;
  font-weight: 500;
  padding: 7px 16px;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}

.ck-toc-link:hover {
  color: #b5451b;
  background: #fdf0e8;
  border-left-color: #b5451b;
}

.ck-toc-link.active {
  color: #b5451b;
  background: #fdf0e8;
  border-left-color: #b5451b;
  font-weight: 700;
}

.ck-related {
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid #ede0d4;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ck-related-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #bbb;
  padding: 11px 16px;
  border-bottom: 1px solid #f0e8df;
}

.ck-related-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.79rem;
  color: #555;
  font-weight: 500;
  padding: 10px 16px;
  text-decoration: none;
  border-bottom: 1px solid #f5ede4;
  transition: all 0.2s;
}

.ck-related-link:last-child {
  border-bottom: none;
}

.ck-related-link:hover {
  color: #b5451b;
  background: #fdf0e8;
}

/* Trust badge */
.ck-trust-badge {
  background: linear-gradient(135deg, #4a0010, #7b1c2e);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(74, 0, 16, 0.2);
}

.ck-tb-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.ck-trust-badge strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.ck-trust-badge p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin-bottom: 12px;
}

.ck-tb-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.ck-tb-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  display: inline-block;
}

.ck-tb-dots span:first-child {
  background: #ffd89b;
}

/* ── Policy Blocks — left accent bar design ── */
.ck-policy-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ck-block {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #ede8e2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  display: flex;
  overflow: hidden;
  scroll-margin-top: 100px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ck-block:hover {
  border-color: #d4852e;
  box-shadow: 0 4px 20px rgba(181, 69, 27, 0.08);
}

.ck-block-accent {
  width: 5px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #b5451b 0%, #d4852e 100%);
}

.ck-block-inner {
  flex: 1;
  padding: 26px 28px;
}

.ck-block-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid #f5ede4;
}

.ck-block-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.ck-block-title h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.ck-block-inner p {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

.ck-block-inner p:last-child {
  margin-bottom: 0;
}

/* Callout boxes */
.ck-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.845rem;
  line-height: 1.7;
  margin-top: 14px;
}

.ck-callout-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.ck-callout-saffron {
  background: #fdf5e8;
  border-left: 4px solid #d4852e;
  color: #7a4500;
}

.ck-callout-blue {
  background: #e8f4fd;
  border-left: 4px solid #3498db;
  color: #1a5a8a;
}

.ck-callout-warn {
  background: #fff8e1;
  border-left: 4px solid #f39c12;
  color: #7a5200;
}

/* Why grid */
.ck-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.ck-why-item {
  background: #fdf8f3;
  border-radius: 12px;
  padding: 14px 12px;
  border: 1.5px solid #f0e4d4;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.ck-why-item:hover {
  border-color: #b5451b;
  transform: translateY(-2px);
}

.ck-wi-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.ck-why-item h6 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.ck-why-item p {
  font-size: 0.76rem;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

/* Table */
.ck-table-wrap {
  overflow-x: auto;
  margin-top: 14px;
  border-radius: 12px;
  border: 1.5px solid #ede0d4;
}

.ck-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.ck-table thead tr {
  background: linear-gradient(135deg, #4a0010, #b5451b);
}

.ck-table thead th {
  padding: 12px 14px;
  color: #fff;
  font-weight: 700;
  text-align: left;
  font-size: 0.76rem;
  white-space: nowrap;
}

.ck-table tbody tr {
  border-bottom: 1px solid #f5ede4;
}

.ck-table tbody tr:last-child {
  border-bottom: none;
}

.ck-table tbody tr:hover {
  background: #fdf8f3;
}

.ck-table tbody td {
  padding: 10px 14px;
  color: #555;
}

.ck-table code {
  background: #fdf0e8;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.76rem;
  color: #b5451b;
  font-weight: 600;
}

/* Badge pills */
.ck-pill {
  font-size: 0.66rem;
  font-weight: 700;
  border-radius: 20px;
  padding: 3px 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.ck-pill-ess {
  background: #fdedc0;
  color: #7a4500;
}

.ck-pill-ana {
  background: #d0e8fb;
  color: #0d47a1;
}

.ck-pill-pref {
  background: #c8f0d8;
  color: #1b5e20;
}

.ck-pill-mkt {
  background: #e8d0f0;
  color: #4a148c;
}

/* Third party */
.ck-tp-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.ck-tp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fdf8f3;
  border-radius: 12px;
  padding: 16px;
  border: 1.5px solid #f0e4d4;
}

.ck-tp-logo {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.ck-tp-g {
  background: #4285f4;
}

.ck-tp-f {
  background: #1877f2;
}

.ck-tp-info h6 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.ck-tp-info p {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 6px;
}

.ck-ext-link {
  font-size: 0.76rem;
  color: #b5451b;
  font-weight: 700;
  text-decoration: none;
}

.ck-ext-link:hover {
  text-decoration: underline;
}

/* Duration grid */
.ck-duration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.ck-dur-card {
  border-radius: 14px;
  padding: 20px;
  border: 2px solid;
}

.ck-dur-session {
  background: #fef9f0;
  border-color: #f5d99b;
}

.ck-dur-persist {
  background: #fdf0e8;
  border-color: #e8b38a;
}

.ck-dur-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.ck-dur-top span {
  font-size: 1.5rem;
}

.ck-dur-top h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.ck-dur-card p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.ck-dur-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ck-dur-chips code {
  background: rgba(181, 69, 27, 0.1);
  color: #b5451b;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
}

/* Control list */
.ck-control-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.ck-control-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: #fdf8f3;
  border-radius: 12px;
  border: 1.5px solid #f0e4d4;
  transition: border-color 0.2s;
}

.ck-control-item:hover {
  border-color: #b5451b;
}

.ck-ci-num {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: linear-gradient(135deg, #7b1c2e, #b5451b);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  flex-shrink: 0;
}

.ck-control-item h6 {
  font-size: 0.845rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 3px;
}

.ck-control-item p {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* Browser grid */
.ck-browser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.ck-browser-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fdf8f3;
  border-radius: 12px;
  border: 1.5px solid #f0e4d4;
  text-decoration: none;
  color: #333;
  font-size: 0.82rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}

.ck-browser-item:hover {
  border-color: #b5451b;
  background: #fdf0e8;
  color: #7b1c2e;
}

.ck-br-dot {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.ck-br-chrome {
  background: #4285f4;
}

.ck-br-firefox {
  background: #ff9500;
}

.ck-br-safari {
  background: #1da1f2;
}

.ck-br-edge {
  background: #0078d4;
}

.ck-br-opera {
  background: #ff1b2d;
}

.ck-br-samsung {
  background: #1428a0;
}

.ck-br-arr {
  margin-left: auto;
  font-size: 0.9rem;
  color: #bbb;
}

/* List */
.ck-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ck-list li {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.ck-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #b5451b;
  font-weight: 800;
  font-size: 1rem;
}

/* Contact grid */
.ck-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.ck-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fdf8f3;
  border-radius: 12px;
  padding: 16px;
  border: 1.5px solid #f0e4d4;
  transition: border-color 0.2s;
}

.ck-contact-card:hover {
  border-color: #b5451b;
}

.ck-contact-card > span {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.ck-contact-card strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 3px;
}

.ck-contact-card span,
.ck-contact-card a {
  font-size: 0.78rem;
  color: #777;
}

.ck-link {
  color: #b5451b;
  text-decoration: none;
  font-weight: 600;
}

.ck-link:hover {
  text-decoration: underline;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .ck-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ck-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ck-browser-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .ck-policy-layout {
    grid-template-columns: 1fr;
  }
  .ck-sidebar {
    position: static;
  }
  .ck-toc {
    display: none;
  }
  .ck-related {
    display: none;
  }
  .ck-trust-badge {
    display: none;
  }
  .ck-consent-right {
    display: none;
  }
}
@media (max-width: 700px) {
  .ck-hero h1 {
    font-size: 2rem;
  }
  .ck-types-grid {
    grid-template-columns: 1fr;
  }
  .ck-why-grid {
    grid-template-columns: 1fr;
  }
  .ck-duration-grid {
    grid-template-columns: 1fr;
  }
  .ck-contact-grid {
    grid-template-columns: 1fr;
  }
  .ck-block-inner {
    padding: 18px 14px;
  }
  .ck-rangoli-svg {
    width: 400px;
    height: 400px;
  }
  .ck-float {
    display: none;
  }
}
@media (max-width: 480px) {
  .ck-hero-pills {
    flex-direction: column;
    align-items: center;
  }
  .ck-browser-grid {
    grid-template-columns: 1fr;
  }
  .ck-hero h1 {
    font-size: 1.7rem;
  }
}
/* ════════════════════════════
   CONTACT US PAGE
   Deep Rose + Gold — Matrimony
════════════════════════════ */
/* ══ HERO ══ */
.ct-hero {
  position: relative;
  background: linear-gradient(135deg, #1a0a2e 0%, #3d0a1a 30%, #7b1c2e 65%, #c0392b 100%);
  padding: 90px 0 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Rangoli */
.ct-hero-rangoli {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.ct-rangoli-svg {
  width: 800px;
  height: 800px;
  opacity: 0.4;
  animation: ctRangoli 80s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes ctRangoli {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* Floating emojis */
.ct-float {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.25;
  font-size: 1.5rem;
}

.ct-float-1 {
  top: 12%;
  left: 3%;
  animation: ctFltA 4.5s ease-in-out infinite;
}

.ct-float-2 {
  bottom: 18%;
  left: 8%;
  animation: ctFltB 5s ease-in-out infinite;
}

.ct-float-3 {
  top: 15%;
  right: 3%;
  animation: ctFltA 5.5s ease-in-out infinite;
  animation-delay: 1s;
}

.ct-float-4 {
  bottom: 15%;
  right: 8%;
  animation: ctFltB 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

@keyframes ctFltA {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(8deg);
  }
}
@keyframes ctFltB {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-8deg);
  }
}
/* Glow */
.ct-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
}

.ct-glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 160, 80, 0.08);
  top: -120px;
  right: 20%;
  animation: ctGP 8s ease-in-out infinite;
}

.ct-glow-2 {
  width: 280px;
  height: 280px;
  background: rgba(0, 0, 0, 0.18);
  bottom: -60px;
  left: 10%;
  animation: ctGP 10s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes ctGP {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
/* Hero grid — two columns */
.ct-hero .container {
  position: relative;
  z-index: 1;
}

.ct-hero-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 50px;
  align-items: center;
}

/* ─── LEFT ─── */
.ct-hero-left {
  color: #fff;
}

/* Ornament */
.ct-ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.ct-ornament-bot {
  margin-top: 28px;
  margin-bottom: 0;
}

.ct-orn-line {
  flex: 0 0 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.ct-orn-sym {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.ct-orn-main {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Tag */
.ct-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

/* H1 */
.ct-hero-left h1 {
  font-size: 2.7rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.ct-hero-left h1 span {
  background: linear-gradient(90deg, #ffd89b, #f5a623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Tagline */
.ct-hero-tagline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}

.ct-tl-main {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.78);
  font-style: italic;
  font-weight: 500;
}

.ct-tl-sub {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.6px;
}

/* Para */
.ct-hero-left > p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 480px;
}

/* Breadcrumb */
.ct-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 26px;
}

.ct-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.ct-hero-breadcrumb a:hover {
  color: #fff;
}

/* Stats grid */
.ct-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ct-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 12px 14px;
  transition: background 0.2s;
}

.ct-stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.ct-si-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.ct-stat-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
}

.ct-stat-item span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ─── RIGHT CARD ─── */
.ct-hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Card header */
.ct-hc-header {
  background: rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ct-hc-icon {
  font-size: 2rem;
}

.ct-hc-header h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.ct-hc-header p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Channel rows */
.ct-hc-channels {
  padding: 6px 0;
}

.ct-hc-ch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}

.ct-hc-ch:last-child {
  border-bottom: none;
}

.ct-hc-ch:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ct-hcc-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ct-hcc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ct-hcc-phone {
  background: rgba(192, 57, 43, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ct-hcc-wa {
  background: rgba(39, 174, 96, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ct-hcc-email {
  background: rgba(52, 152, 219, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ct-hcc-office {
  background: rgba(142, 68, 173, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ct-hcc-left strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
}

.ct-hcc-left span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

.ct-hcc-val {
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-align: right;
  max-width: 160px;
}

/* Trust line */
.ct-hc-trust {
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: center;
  justify-content: center;
}

.ct-hc-trust strong {
  color: #ffd89b;
}

/* ══ MAIN SECTION ══ */
.ct-main-section {
  padding: 60px 0 80px;
  background: #faf5f0;
}

.ct-main-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 26px;
  align-items: flex-start;
}

/* Form wrap */
.ct-form-wrap {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #ede0d4;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.ct-form-header {
  background: linear-gradient(135deg, #3d0a1a, #7b1c2e, #b5451b);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ct-fh-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.ct-form-header h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
}

.ct-form-header p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* Form body */
.ct-form {
  padding: 28px;
}

.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-field-full {
  margin-bottom: 16px;
}

/* Label */
.ct-field label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #333;
}

.ct-field label span {
  color: #c0392b;
}

/* Input */
.ct-input-wrap {
  position: relative;
}

.ct-input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}

.ct-input-wrap input {
  width: 100%;
  border: 1.5px solid #e0d4cc;
  border-radius: 10px;
  padding: 11px 14px 11px 38px;
  font-size: 0.875rem;
  color: #333;
  font-family: "Poppins", sans-serif;
  background: #fdfaf8;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.ct-input-wrap input:focus {
  border-color: #b5451b;
  box-shadow: 0 0 0 3px rgba(181, 69, 27, 0.11);
  background: #fff;
}

.ct-input-wrap input.ct-invalid {
  border-color: #c0392b;
}

.ct-input-wrap input::-moz-placeholder {
  color: #c8bfba;
}

.ct-input-wrap input::placeholder {
  color: #c8bfba;
}

/* Select */
.ct-select-wrap {
  position: relative;
}

.ct-select-wrap .ct-input-icon {
  top: 50%;
  transform: translateY(-50%);
}

.ct-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #b5451b;
  pointer-events: none;
  font-weight: 700;
}

.ct-select-wrap select {
  width: 100%;
  border: 1.5px solid #e0d4cc;
  border-radius: 10px;
  padding: 11px 36px 11px 38px;
  font-size: 0.875rem;
  color: #333;
  font-family: "Poppins", sans-serif;
  background: #fdfaf8;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.ct-select-wrap select:focus {
  border-color: #b5451b;
  box-shadow: 0 0 0 3px rgba(181, 69, 27, 0.11);
  background: #fff;
}

.ct-select-wrap select.ct-invalid {
  border-color: #c0392b;
}

.ct-select-wrap select option {
  color: #333;
}

.ct-select-wrap select optgroup {
  font-weight: 700;
  color: #b5451b;
}

/* Textarea */
.ct-textarea-wrap textarea {
  width: 100%;
  border: 1.5px solid #e0d4cc;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.875rem;
  color: #333;
  font-family: "Poppins", sans-serif;
  background: #fdfaf8;
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.ct-textarea-wrap textarea:focus {
  border-color: #b5451b;
  box-shadow: 0 0 0 3px rgba(181, 69, 27, 0.11);
  background: #fff;
}

.ct-textarea-wrap textarea::-moz-placeholder {
  color: #c8bfba;
}

.ct-textarea-wrap textarea::placeholder {
  color: #c8bfba;
}

/* Field footer */
.ct-field-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ct-char-count {
  font-size: 0.72rem;
  color: #bbb;
  font-weight: 600;
}

/* Error */
.ct-err {
  font-size: 0.74rem;
  color: #c0392b;
  font-weight: 600;
  display: none;
}

.ct-err.visible {
  display: block;
}

/* Time chips */
.ct-time-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ct-chip {
  cursor: pointer;
}

.ct-chip input {
  display: none;
}

.ct-chip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  background: #fdf5f0;
  border: 1.5px solid #e0d4cc;
  border-radius: 20px;
  padding: 8px 16px;
  transition: all 0.2s;
  cursor: pointer;
}

.ct-chip input:checked + span {
  background: #7b1c2e;
  color: #fff;
  border-color: #7b1c2e;
}

/* Checkbox */
.ct-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.ct-checkbox-wrap input {
  display: none;
}

.ct-checkbox-box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 5px;
  border: 2px solid #c0b8b4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: all 0.2s;
  background: #fdfaf8;
}

.ct-checkbox-wrap input:checked + .ct-checkbox-box {
  background: #7b1c2e;
  border-color: #7b1c2e;
}

.ct-checkbox-wrap input:checked + .ct-checkbox-box::after {
  content: "✓";
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

.ct-checkbox-label {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.6;
}

.ct-link {
  color: #b5451b;
  text-decoration: none;
  font-weight: 600;
}

.ct-link:hover {
  text-decoration: underline;
}

/* Submit */
.ct-submit-btn {
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, #4a0010, #7b1c2e, #b5451b);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.2s, transform 0.2s;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.3px;
  margin-top: 6px;
}

.ct-submit-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.ct-submit-btn:active {
  transform: translateY(0);
}

/* Loader */
.ct-loader {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ctSpin 0.7s linear infinite;
}

@keyframes ctSpin {
  to {
    transform: rotate(360deg);
  }
}
/* Success */
.ct-success {
  padding: 50px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ct-success-rangoli {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ct-success-rangoli svg {
  width: 280px;
  height: 280px;
}

.ct-success-icon {
  font-size: 4rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.ct-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.ct-success p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.ct-success-orn {
  font-size: 1.2rem;
  color: #b5451b;
  letter-spacing: 8px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.ct-success-back {
  background: none;
  border: 1.5px solid #b5451b;
  color: #b5451b;
  border-radius: 10px;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: all 0.2s;
  position: relative;
  z-index: 1;
}

.ct-success-back:hover {
  background: #b5451b;
  color: #fff;
}

/* ══ INFO PANEL ══ */
.ct-info-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ct-info-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #ede0d4;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.ct-ic-hdr {
  background: linear-gradient(135deg, #4a0010, #7b1c2e);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.ct-ic-body {
  padding: 16px;
}

/* Hours */
.ct-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #555;
  padding: 7px 0;
  border-bottom: 1px dashed #f0e8e0;
}

.ct-hours-row:last-of-type {
  border-bottom: none;
}

.ct-hours-open {
  color: #1b5e20;
  font-weight: 700;
}

.ct-hours-closed {
  color: #c0392b;
  font-weight: 700;
}

.ct-hours-note {
  font-size: 0.74rem;
  color: #888;
  margin-top: 10px;
  padding: 8px 12px;
  background: #f0fff4;
  border-radius: 8px;
}

/* Dept */
.ct-dept-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ct-dept-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ct-dept-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ct-dept-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a1a1a;
}

.ct-dept-item span {
  font-size: 0.72rem;
  color: #888;
}

/* Offices */
.ct-offices-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ct-office-item {
  padding: 12px;
  border-radius: 10px;
  border: 1.5px solid #f0e8e0;
  background: #fdfaf8;
  transition: border-color 0.2s;
}

.ct-office-item:hover {
  border-color: #b5451b;
}

.ct-office-hq {
  border-color: #b5451b;
  background: #fdf5f0;
}

.ct-oi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.ct-oi-badge {
  font-size: 0.64rem;
  font-weight: 700;
  background: #b5451b;
  color: #fff;
  border-radius: 20px;
  padding: 2px 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ct-oi-city {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a1a1a;
}

.ct-office-item p {
  font-size: 0.74rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* Social */
.ct-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ct-social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  padding: 9px 12px;
  border-radius: 9px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.ct-social-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  color: #fff;
}

.ct-social-btn span {
  font-size: 0.9rem;
  font-weight: 900;
}

.ct-s-fb {
  background: #1877f2;
}

.ct-s-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.ct-s-yt {
  background: #ff0000;
}

.ct-s-tw {
  background: #000;
}

/* Trust */
.ct-trust-card {
  background: linear-gradient(135deg, #3d0a1a, #7b1c2e);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(74, 0, 16, 0.2);
}

.ct-trust-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ct-trust-bg svg {
  width: 200px;
  height: 200px;
  opacity: 0.4;
}

.ct-trust-body {
  position: relative;
  z-index: 1;
}

.ct-trust-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.ct-trust-card h5 {
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
}

.ct-trust-card p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  margin-bottom: 12px;
}

.ct-trust-pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ct-trust-pills span {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 4px 12px;
}

/* ══ MAP ══ */
.ct-map-section {
  background: #1a0a2e;
}

.ct-map-header {
  padding: 40px 0 26px;
  text-align: center;
}

.ct-map-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffd89b;
  background: rgba(255, 216, 155, 0.12);
  border: 1px solid rgba(255, 216, 155, 0.22);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 10px;
}

.ct-map-header h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.ct-map-header h2 span {
  color: #ffd89b;
}

.ct-map-header p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ══ FAQ ══ */
.ct-faq-section {
  padding: 70px 0;
  background: #faf5f0;
}

.ct-faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.ct-faq-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #b5451b;
  background: #fdf0e8;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 10px;
}

.ct-faq-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a1a;
}

.ct-faq-header h2 span {
  color: #b5451b;
}

.ct-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ct-faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid #ede0d4;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ct-faq-item:hover {
  border-color: #b5451b;
  box-shadow: 0 4px 16px rgba(181, 69, 27, 0.08);
}

.ct-faq-item.open {
  border-color: #b5451b;
}

.ct-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  gap: 12px;
}

.ct-faq-q span:first-child {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
}

.ct-faq-arr {
  font-size: 1.2rem;
  color: #b5451b;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.ct-faq-item.open .ct-faq-arr {
  transform: rotate(180deg);
}

.ct-faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  font-size: 0.845rem;
  color: #666;
  line-height: 1.8;
  transition: max-height 0.35s ease, padding 0.3s;
}

.ct-faq-item.open .ct-faq-a {
  max-height: 200px;
  padding: 14px 18px;
  border-top: 1px solid #f0e8e0;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .ct-hero-grid {
    grid-template-columns: 1fr;
  }
  .ct-hero-right {
    display: none;
  }
  .ct-hero-left {
    text-align: center;
  }
  .ct-hero-left > p {
    margin-left: auto;
    margin-right: auto;
  }
  .ct-ornament {
    justify-content: center;
  }
  .ct-hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .ct-hero-breadcrumb {
    display: inline-flex;
  }
  .ct-main-layout {
    grid-template-columns: 1fr;
  }
  .ct-info-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ct-trust-card {
    grid-column: span 2;
  }
}
@media (max-width: 900px) {
  .ct-faq-grid {
    grid-template-columns: 1fr;
  }
  .ct-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .ct-hero-left h1 {
    font-size: 2rem;
  }
  .ct-form-row {
    grid-template-columns: 1fr;
  }
  .ct-form {
    padding: 20px 16px;
  }
  .ct-form-header {
    padding: 18px 16px;
  }
  .ct-info-panel {
    grid-template-columns: 1fr;
  }
  .ct-trust-card {
    grid-column: span 1;
  }
  .ct-rangoli-svg {
    width: 400px;
    height: 400px;
  }
  .ct-float {
    display: none;
  }
}
@media (max-width: 480px) {
  .ct-hero-left h1 {
    font-size: 1.7rem;
  }
  .ct-hero-stats {
    grid-template-columns: 1fr 1fr;
  }
}/*# sourceMappingURL=mainstylesheet.css.map */