/* style/da-ga.css */

/* Base Styles */
.page-da-ga {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
}

.page-da-ga__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.page-da-ga__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #F2C14E; /* Main color for titles */
  padding-top: 20px;
}

.page-da-ga__text-content {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-da-ga__btn-primary,
.page-da-ga__btn-secondary,
.page-da-ga__card-button,
.page-da-ga__step-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  border: none;
}

.page-da-ga__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
}

.page-da-ga__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-da-ga__btn-secondary {
  background: transparent;
  color: #F2C14E;
  border: 2px solid #F2C14E;
}

.page-da-ga__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
  transform: translateY(-2px);
}

/* Hero Section */
.page-da-ga__hero-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #0A0A0A;
}

.page-da-ga__hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 16px;
}

.page-da-ga__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: left;
  order: 2; /* Content below image on desktop, above on mobile */
}

.page-da-ga__hero-image {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
  order: 1;
}

.page-da-ga__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-da-ga__hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow color for main title */
  line-height: 1.2;
}

.page-da-ga__hero-description {
  font-size: 19px;
  margin-bottom: 30px;
  color: #FFF6D6;
  line-height: 1.7;
}

.page-da-ga__hero-cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Intro Section */
.page-da-ga__intro-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-da-ga__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-da-ga__feature-item {
  text-align: center;
  background-color: #111111; /* Card BG */
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-da-ga__feature-item:hover {
  transform: translateY(-5px);
}

.page-da-ga__icon-box-media {
  width: 180px;
  height: 180px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F2C14E 0%, #FFD36B 100%);
  box-shadow: 0 0 0 5px rgba(242, 193, 78, 0.3);
}

.page-da-ga__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.page-da-ga__feature-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2C14E;
}

.page-da-ga__feature-description {
  font-size: 16px;
  color: #FFF6D6;
}

/* Types Section */
.page-da-ga__types-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-da-ga__type-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-da-ga__card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-da-ga__card:hover {
  transform: translateY(-5px);
}

.page-da-ga__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-da-ga__card-content {
  padding: 25px;
}

.page-da-ga__card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #F2C14E;
}

.page-da-ga__card-description {
  font-size: 16px;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-da-ga__card-button {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: opacity 0.3s ease;
}

.page-da-ga__card-button:hover {
  opacity: 0.9;
}

/* Guide Section */
.page-da-ga__guide-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-da-ga__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-da-ga__step-item {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  gap: 20px;
}

.page-da-ga__step-number {
  font-size: 36px;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 211, 107, 0.1);
}

.page-da-ga__step-content {
  flex-grow: 1;
}

.page-da-ga__step-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #F2C14E;
}

.page-da-ga__step-description {
  font-size: 16px;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-da-ga__step-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.page-da-ga__step-button:hover {
  opacity: 0.9;
}

/* Advantages Section */
.page-da-ga__advantages-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-da-ga__advantages-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 800px;
}

.page-da-ga__advantage-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 18px;
  color: #FFF6D6;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-da-ga__advantage-item span {
  color: #FFD36B; /* Glow for checkmark */
  font-size: 24px;
  line-height: 1;
}

.page-da-ga__advantage-item strong {
  color: #F2C14E;
}

.page-da-ga__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

/* FAQ Section */
.page-da-ga__faq-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-da-ga__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-da-ga__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-da-ga__faq-item summary {
  list-style: none;
}

.page-da-ga__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-da-ga__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #F2C14E;
  cursor: pointer;
  background-color: #111111;
  transition: background-color 0.3s ease;
}

.page-da-ga__faq-question:hover {
  background-color: #1a1a1a;
}

.page-da-ga__faq-qtext {
  flex-grow: 1;
}

.page-da-ga__faq-toggle {
  font-size: 24px;
  line-height: 1;
  color: #FFD36B; /* Glow */
  margin-left: 15px;
}

.page-da-ga__faq-item[open] .page-da-ga__faq-toggle {
  content: '−';
}

.page-da-ga__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  color: #FFF6D6;
  line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-da-ga__hero-title {
    font-size: clamp(32px, 4.5vw, 50px);
  }
  .page-da-ga__hero-description {
    font-size: 17px;
  }
  .page-da-ga__feature-title {
    font-size: 22px;
  }
  .page-da-ga__card-title {
    font-size: 20px;
  }
  .page-da-ga__step-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page-da-ga__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-da-ga__hero-container {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
    gap: 30px;
  }
  .page-da-ga__hero-content {
    order: 1;
    text-align: center;
  }
  .page-da-ga__hero-image {
    order: 2;
  }
  .page-da-ga__hero-title {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 15px;
  }
  .page-da-ga__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-da-ga__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .page-da-ga__btn-primary,
  .page-da-ga__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 15px !important;
  }

  /* Intro Section */
  .page-da-ga__intro-section,
  .page-da-ga__types-section,
  .page-da-ga__guide-section,
  .page-da-ga__advantages-section,
  .page-da-ga__faq-section {
    padding: 40px 0;
  }
  .page-da-ga__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
  }
  .page-da-ga__section-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 25px;
  }
  .page-da-ga__text-content {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-da-ga__features-grid,
  .page-da-ga__type-cards,
  .page-da-ga__guide-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Module 1 (Features) */
  .page-da-ga__icon-box-media {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }
  .page-da-ga__feature-title {
    font-size: 20px;
  }
  .page-da-ga__feature-description {
    font-size: 15px;
  }

  /* Type Cards */
  .page-da-ga__card-image {
    height: 180px;
  }
  .page-da-ga__card-title {
    font-size: 18px;
  }
  .page-da-ga__card-description {
    font-size: 15px;
  }
  .page-da-ga__card-button {
    font-size: 14px;
    padding: 10px 15px;
  }

  /* Guide Steps */
  .page-da-ga__step-item {
    flex-direction: column;
    text-align: center;
    padding: 25px;
    gap: 15px;
  }
  .page-da-ga__step-number {
    margin: 0 auto 10px auto;
    font-size: 30px;
    width: 45px;
    height: 45px;
  }
  .page-da-ga__step-title {
    font-size: 19px;
  }
  .page-da-ga__step-description {
    font-size: 15px;
  }
  .page-da-ga__step-button {
    max-width: 100%;
    width: 100%;
  }

  /* Advantages List */
  .page-da-ga__advantages-list {
    margin-top: 30px;
  }
  .page-da-ga__advantage-item {
    font-size: 16px;
    padding: 15px;
    gap: 10px;
  }
  .page-da-ga__advantage-item span {
    font-size: 20px;
  }
  .page-da-ga__cta-bottom {
    margin-top: 40px;
  }

  /* FAQ Section */
  .page-da-ga__faq-list {
    margin-top: 30px;
  }
  .page-da-ga__faq-question {
    font-size: 16px;
    padding: 15px 20px;
  }
  .page-da-ga__faq-toggle {
    font-size: 20px;
  }
  .page-da-ga__faq-answer {
    padding: 0 20px 15px;
    font-size: 15px;
  }

  /* General Image Responsiveness */
  .page-da-ga img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-da-ga__card-image {
    height: auto !important; /* Override fixed height for responsiveness */
  }
  .page-da-ga__icon-box-media img {
    width: 100% !important;
    height: 100% !important; /* Maintain aspect ratio */
    object-fit: cover !important;
  }

  /* Ensure all containers handle overflow */
  .page-da-ga__hero-section,
  .page-da-ga__intro-section,
  .page-da-ga__types-section,
  .page-da-ga__guide-section,
  .page-da-ga__advantages-section,
  .page-da-ga__faq-section,
  .page-da-ga__card,
  .page-da-ga__feature-item,
  .page-da-ga__step-item,
  .page-da-ga__advantages-list,
  .page-da-ga__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}