/* ===== MODERN OCCASION PAGES DESIGN ===== */

/* Base Typography */
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
  line-height: 1;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

/* Reset container background */
.occ-container {
  background: transparent;
  padding: 0;
  max-width: 100%;
}

/* Section Backgrounds - Alternating for Visual Separation */
.occ-section-white {
  background: #ffffff;
  padding: 4rem 2rem;
}

.occ-section-light-pink {
  background: linear-gradient(135deg, #fff5f7 0%, #ffe8ed 100%);
  padding: 4rem 2rem;
}

.occ-section-light-teal {
  background: linear-gradient(135deg, #e8f9f6 0%, #d4f4ec 100%);
  padding: 4rem 2rem;
}

.occ-section-gradient {
  background: linear-gradient(135deg, #fff5f7 0%, #e8f9f6 100%);
  padding: 4rem 2rem;
}

.occ-section-dark {
  background: linear-gradient(135deg, #1a7f6b 0%, #247F72 100%);
  color: #fff;
  padding: 4rem 2rem;
}

/* Section Inner Container */
.occ-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Dividers Between Sections */
.occ-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, #81dbcd, transparent);
  margin: 0;
}

.occ-divider-wave {
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40'%3E%3Cpath fill='%2381dbcd' fill-opacity='0.3' d='M0,20 Q300,0 600,20 T1200,20 L1200,40 L0,40 Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: cover;
}

/* Hero Section - Full Width with Gradient */
.occ-hero-modern {
  background: linear-gradient(135deg, #fff 0%, #fff5f7 50%, #e8f9f6 100%);
  padding: 3rem 2rem 4rem;
  position: relative;
}

.occ-hero-modern::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff7e9c, transparent);
}

/* Hero Title (H2) - Large and Bold */
.occ-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #1a1a1a;
  text-align: center;
  margin: 1rem auto 1.5rem;
  max-width: 1000px;
  line-height: 1.15;
  background: linear-gradient(135deg, #1a1a1a 0%, #ff7e9c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Subtitle */
.occ-hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #444;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* Trust Badges - Compact Design */
.occ-badges-compact {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2rem auto;
  max-width: 800px;
}

.occ-badge-compact {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a7f6b;
  box-shadow: 0 2px 12px rgba(26, 127, 107, 0.15);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.occ-badge-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26, 127, 107, 0.25);
}

.occ-badge-icon {
  font-size: 1.2rem;
}

.occ-badge-compact strong {
  font-weight: 700;
  color: #1a1a1a;
}

/* CTA Buttons - Modern Design */
.occ-cta-modern {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 2.5rem auto 2rem;
  flex-wrap: wrap;
}

.occ-btn-primary-modern {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #ff7e9c 0%, #ff5a7a 100%);
  color: #fff;
  border: none;
  padding: 1.1rem 2.75rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 126, 156, 0.35);
  transition: all 0.3s ease;
}

.occ-btn-primary-modern:hover {
  background: linear-gradient(135deg, #ff5a7a 0%, #ff3a5a 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 126, 156, 0.45);
}

.occ-btn-secondary-modern {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #abe4db 0%, rgb(129, 219, 205) 100%);;
  color: #ffffff;
  border: 2px solid #81dbcd;
  padding: 1.1rem 2.75rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.occ-btn-secondary-modern:hover {
  background: #e8f9f6;
  color: #81dbcd;
  border-color: #1a7f6b;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(26, 127, 107, 0.2);
}

/* Hero Image Container */
.occ-hero-image-modern {
  /*max-width: 1000px;*/
  margin: 3rem auto 2rem;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
}

.occ-hero-image-modern img {
  width: 100%;
  height: auto;
  display: block;
}

/* Value Props - Side by Side Cards */
.occ-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.occ-value-modern {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(255, 126, 156, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.occ-value-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 126, 156, 0.15);
  border-color: rgba(255, 126, 156, 0.3);
}

.occ-value-modern h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff7e9c;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.occ-value-modern p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

/* Section Headings */
.occ-section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin: 0 auto 1.5rem;
  max-width: 800px;
  color: #1a1a1a;
}

.occ-section-heading-white {
  color: #fff;
}

.occ-section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: #555;
  line-height: 1.6;
}

.occ-section-subtitle-white {
  color: rgba(255, 255, 255, 0.9);
}

/* How It Works - 3 Steps with Images */
.occ-steps-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2.5rem auto 2rem;
  position: relative;
}

.occ-step-modern {
  background: #fff;
  padding: 1.75rem 1.25rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.occ-step-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.occ-step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff7e9c, #ff5a7a);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(255, 126, 156, 0.4);
  z-index: 10;
}

.occ-step-icon-modern {
  margin: 1rem auto 1rem;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.occ-step-icon-modern img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.occ-step-modern h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a7f6b;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.occ-step-modern p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* How It Works CTA */
.occ-hiw-cta {
  text-align: center;
  margin: 2.5rem auto 0;
}

.occ-btn-hiw {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #1a7f6b;
  border: 2px solid #1a7f6b;
  padding: 0.9rem 2.25rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.occ-btn-hiw:hover {
  background: #1a7f6b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 127, 107, 0.3);
}

/* Features Grid - Compact 3 Column */
.occ-features-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto;
}

.occ-features-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
}

.occ-feature-modern {
  background: #fff;
  padding: 2rem;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  border: 1px solid rgba(129, 219, 205, 0.2);
}

.occ-feature-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(26, 127, 107, 0.15);
  border-color: #81dbcd;
}

.occ-feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.occ-feature-modern h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a7f6b;
  margin: 0 0 0.75rem;
}

.occ-feature-modern p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* FAQ - Modern Accordion */
.occ-faq-modern {
  max-width: 900px;
  margin: 3rem auto;
}

.occ-faq-item-modern {
  background: #fff;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.occ-faq-item-modern:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.occ-faq-question-modern {
  font-family: 'Poppins', sans-serif;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1.05rem;
  transition: background 0.2s ease;
  user-select: none;
}

.occ-faq-question-modern:hover {
  background: #f8f9fa;
}

.occ-faq-arrow-modern {
  font-size: 0.85rem;
  color: #1a7f6b;
  transition: transform 0.3s ease;
}

.occ-faq-answer-modern {
  font-family: 'Poppins', sans-serif;
  display: none;
  padding: 1rem 1.5rem 1.5rem;
  color: #555;
  line-height: 1.7;
  font-size: 0.98rem;
  font-weight: 400;
  border-top: 1px solid #eee;
}

/* SEO Keywords Section - Accordion Style */
.occ-keywords-section {
  max-width: 900px;
  margin: 3rem auto;
}

.occ-keyword-category {
  background: #fff;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.occ-keyword-header {
  font-family: 'Poppins', sans-serif;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #1a7f6b;
  font-size: 1.1rem;
  transition: background 0.2s ease;
  user-select: none;
}

.occ-keyword-header:hover {
  background: #f8f9fa;
}

.occ-keyword-arrow {
  font-size: 0.85rem;
  color: #1a7f6b;
  transition: transform 0.3s ease;
}

.occ-keyword-content {
  display: none;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid #eee;
}

.occ-keyword-item {
  margin-bottom: 1.5rem;
}

.occ-keyword-item:last-child {
  margin-bottom: 0;
}

.occ-keyword-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ff7e9c;
  margin: 0 0 0.5rem;
}

.occ-keyword-item p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* CTA Box - Highlighted */
.occ-cta-box-modern {
  background: linear-gradient(135deg, #1a7f6b 0%, #247F72 100%);
  padding: 3.5rem 2rem;
  border-radius: 25px;
  text-align: center;
  max-width: 900px;
  margin: 3rem auto;
  box-shadow: 0 10px 40px rgba(26, 127, 107, 0.25);
  color: #fff;
}

.occ-cta-box-modern h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: #fff;
}

.occ-cta-box-modern p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin: 0 auto 2rem;
  max-width: 700px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.occ-cta-box-gradient {
  background: linear-gradient(135deg, #81dbcd 0%, #1a7f6b 100%) !important;
}

.occ-btn-white-modern {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #1a7f6b;
  border: none;
  padding: 1.1rem 2.75rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.occ-btn-white-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  background: #f0f0f0;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .occ-hero-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .occ-hero-subtitle {
    font-size: 1.15rem;
    text-align: center;
  }

  .occ-value-grid,
  .occ-steps-modern,
  .occ-features-modern,
  .occ-features-grid-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .occ-value-modern {
    text-align: center;
  }

  .occ-value-modern h3 {
    justify-content: center;
  }

  .occ-section-heading {
    font-size: 2rem;
    text-align: center;
  }

  .occ-section-subtitle {
    text-align: center;
  }

  .occ-section-white,
  .occ-section-light-pink,
  .occ-section-light-teal,
  .occ-section-gradient,
  .occ-section-dark {
    padding: 3rem 1.5rem;
  }

  .occ-badges-compact {
    flex-direction: column;
    align-items: center;
  }

  .occ-badge-compact {
    width: 75%;
    max-width: 300px;
    justify-content: center;
  }

  .occ-cta-modern {
    flex-direction: column;
    align-items: center;
  }

  .occ-btn-primary-modern,
  .occ-btn-secondary-modern,
  .occ-btn-white-modern {
    width: 90%;
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  .occ-hero-title {
    font-size: 2rem;
  }

  .occ-hero-subtitle {
    font-size: 1rem;
  }

  .occ-section-heading {
    font-size: 1.75rem;
  }

  .occ-cta-box-modern h2 {
    font-size: 1.75rem;
  }
}

/* ===== TRUSTED BY SECTION ===== */

.occ-trusted-by {
  background: #ffffff;
  padding: 4rem 2rem;
  overflow: hidden;
}

.occ-trusted-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a7f6b;
  text-align: center;
  margin: 0 auto 0.5rem;
  max-width: 800px;
}

.occ-trusted-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #666;
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 600px;
}

.occ-logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.occ-logos {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: scrollLogos 30s linear infinite;
  width: fit-content;
}

.occ-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.occ-logo-item img {
  max-width: 120px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

.occ-logo-item img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover for accessibility */
.occ-logo-slider:hover .occ-logos {
  animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .occ-trusted-title {
    font-size: 1.75rem;
  }

  .occ-trusted-subtitle {
    font-size: 1rem;
  }

  .occ-logos {
    gap: 2.5rem;
  }

  .occ-logo-item img {
    max-width: 100px;
    max-height: 60px;
  }
}

@media (max-width: 768px) {
  .occ-trusted-by {
    padding: 3rem 1.5rem;
  }

  .occ-trusted-title {
    font-size: 1.5rem;
  }

  .occ-trusted-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }

  .occ-logos {
    gap: 2rem;
    animation-duration: 25s;
  }

  .occ-logo-item {
    height: 60px;
  }

  .occ-logo-item img {
    max-width: 80px;
    max-height: 50px;
  }
}

@media (max-width: 480px) {
  .occ-trusted-by {
    padding: 2.5rem 1rem;
  }

  .occ-trusted-title {
    font-size: 1.25rem;
  }

  .occ-trusted-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .occ-logos {
    gap: 1.5rem;
    animation-duration: 20s;
  }

  .occ-logo-item {
    height: 50px;
  }

  .occ-logo-item img {
    max-width: 70px;
    max-height: 45px;
  }
}
