/* style/da-ga.css */

/* General styles for the page */
.page-da-ga {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF1E8; /* Text Main */
    background-color: #140C0C; /* Background */
}

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

.page-da-ga__dark-section {
    background-color: #2A1212; /* Card BG */
    color: #FFF1E8;
}

.page-da-ga__section-title {
    font-size: 3em;
    font-weight: bold;
    color: #F3C54D; /* Gold */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-da-ga__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #FFF1E8;
}

/* Buttons */
.page-da-ga__btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-da-ga__btn-primary {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
    color: #140C0C; /* Dark text for light button */
    border: none;
}

.page-da-ga__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 176, 74, 0.4);
}

.page-da-ga__btn-secondary {
    background-color: transparent;
    color: #FFB04A; /* Gold color for text */
    border: 2px solid #FFB04A; /* Gold border */
}

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

.page-da-ga__btn-text-link {
    background: none;
    border: none;
    color: #F3C54D; /* Gold */
    padding: 0;
    text-decoration: underline;
    font-size: 0.9em;
    margin-top: 10px;
}
.page-da-ga__btn-text-link:hover {
    color: #FFB04A;
}

.page-da-ga__btn-large {
    padding: 18px 36px;
    font-size: 1.2em;
}

/* Images */
.page-da-ga img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.page-da-ga__hero-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 40px 16px;
}

.page-da-ga__hero-content {
    flex: 1 1 50%;
    min-width: 300px;
    text-align: left;
}

.page-da-ga__main-title {
    font-size: 3.5em; /* Adjusted H1 font size */
    font-weight: 700;
    color: #F3C54D; /* Gold */
    margin-bottom: 20px;
    line-height: 1.1;
    max-width: 600px; /* Constraint H1 width */
}

.page-da-ga__hero-description {
    font-size: 1.2em;
    color: #FFF1E8;
    margin-bottom: 30px;
    max-width: 550px;
}

.page-da-ga__cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

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

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

/* Intro Section */
.page-da-ga__intro-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-da-ga__feature-item {
    text-align: center;
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-da-ga__icon-box-media {
    width: 200px; /* Reduced for better visual on desktop */
    height: 200px;
    aspect-ratio: 1/1;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #F3C54D; /* Gold border */
}

.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: 1.8em;
    color: #F3C54D; /* Gold */
    margin-bottom: 10px;
}

.page-da-ga__feature-text {
    color: #FFF1E8;
    font-size: 1em;
}

/* Why Choose Section */
.page-da-ga__why-choose-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #140C0C; /* Background */
}

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

.page-da-ga__reason-item {
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-da-ga__reason-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
}

.page-da-ga__reason-item h3 {
    font-size: 1.6em;
    color: #F3C54D; /* Gold */
    margin: 20px 15px 10px;
}

.page-da-ga__reason-item p {
    color: #FFF1E8;
    padding: 0 15px 20px;
    font-size: 0.95em;
}

/* Guide Section */
.page-da-ga__guide-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-da-ga__step-item {
    background-color: #140C0C; /* Background */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-top: 70px;
}

.page-da-ga__step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
    color: #140C0C;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #2A1212; /* Card BG */
}

.page-da-ga__step-title {
    font-size: 1.7em;
    color: #F3C54D; /* Gold */
    margin-bottom: 15px;
}

.page-da-ga__step-text {
    color: #FFF1E8;
    font-size: 1em;
    margin-bottom: 15px;
}

/* Promo Section */
.page-da-ga__promo-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #140C0C; /* Background */
}

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

.page-da-ga__promo-card {
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

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

.page-da-ga__promo-card h3 {
    font-size: 1.6em;
    color: #F3C54D; /* Gold */
    margin: 20px 20px 10px;
}

.page-da-ga__promo-card p {
    color: #FFF1E8;
    padding: 0 20px 20px;
    font-size: 0.95em;
    flex-grow: 1; /* Make sure text takes available space */
}

.page-da-ga__promo-card .page-da-ga__btn-primary {
    margin: 0 20px 20px;
    align-self: flex-start; /* Align button to start */
    width: auto;
}

/* FAQ Section */
.page-da-ga__faq-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-da-ga__faq-list {
    max-width: 900px;
    margin: 50px auto 0;
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 12px;
    overflow: hidden;
}

.page-da-ga__faq-item {
    background-color: #140C0C; /* Background */
    border-bottom: 1px solid #6A1E1E; /* Border */
}
.page-da-ga__faq-item:last-child {
    border-bottom: none;
}

.page-da-ga__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #F3C54D; /* Gold */
    cursor: pointer;
    background-color: #2A1212; /* Card BG */
}

.page-da-ga__faq-question:hover {
    background-color: #3d1b1b;
}

.page-da-ga__faq-item[open] .page-da-ga__faq-question {
    background-color: #3d1b1b;
}

.page-da-ga__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #FFB04A; /* Gold */
}

.page-da-ga__faq-answer {
    padding: 15px 20px 20px;
    font-size: 1em;
    color: #FFF1E8;
    background-color: #140C0C; /* Background */
}

.page-da-ga__faq-answer p {
    margin-bottom: 10px;
}
.page-da-ga__faq-answer .page-da-ga__btn-text-link {
    display: inline-block;
    margin-top: 10px;
}

/* CTA Section */
.page-da-ga__cta-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #E53030; /* Auxiliary color */
    text-align: center;
}

.page-da-ga__cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.page-da-ga__cta-section .page-da-ga__section-title {
    color: #FFF1E8; /* Text Main */
    margin-bottom: 0;
}

.page-da-ga__cta-section .page-da-ga__section-description {
    color: #FFF1E8;
    margin-bottom: 0;
}

/* Latest News Section */
.page-da-ga__latest-news-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-da-ga__news-card {
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.page-da-ga__news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-da-ga__news-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-da-ga__news-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-da-ga__news-title a {
    color: #F3C54D; /* Gold */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-da-ga__news-title a:hover {
    color: #FFB04A;
}

.page-da-ga__news-date {
    font-size: 0.9em;
    color: #7E0D0D; /* Deep Red */
    margin-bottom: 15px;
}

.page-da-ga__news-excerpt {
    font-size: 0.95em;
    color: #FFF1E8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-da-ga__btn-read-more {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
    color: #140C0C;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    align-self: flex-start;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-da-ga__btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 176, 74, 0.4);
}

.page-da-ga__view-all {
    text-align: center;
    margin-top: 50px;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-da-ga__main-title {
        font-size: 3em;
    }
    .page-da-ga__section-title {
        font-size: 2.5em;
    }
    .page-da-ga__hero-container {
        flex-direction: column;
        text-align: center;
    }
    .page-da-ga__hero-content {
        text-align: center;
    }
    .page-da-ga__cta-buttons {
        justify-content: center;
    }
    .page-da-ga__icon-box-media {
        width: 180px;
        height: 180px;
    }
    .page-da-ga__reason-image, .page-da-ga__promo-image, .page-da-ga__news-image {
        height: 200px;
    }
}


@media (max-width: 768px) {
    /* General Mobile Adaption */
    .page-da-ga__container {
        padding: 20px 15px !important;
    }

    .page-da-ga__section-title {
        font-size: 2em !important;
        margin-bottom: 15px !important;
    }

    .page-da-ga__section-description {
        font-size: 1em !important;
        margin-bottom: 20px !important;
    }

    /* HERO Section */
    .page-da-ga__hero-section {
        padding-top: 10px !important; /* Small top padding */
        padding-bottom: 40px !important;
    }

    .page-da-ga__hero-container {
        flex-direction: column !important;
        padding: 20px 15px !important;
        gap: 20px !important;
    }

    .page-da-ga__hero-content {
        text-align: center !important;
        min-width: unset !important;
        flex: 1 1 100% !important;
    }

    .page-da-ga__main-title {
        font-size: 2.2em !important;
        margin-bottom: 15px !important;
        max-width: 100% !important;
    }

    .page-da-ga__hero-description {
        font-size: 1em !important;
        margin-bottom: 25px !important;
        max-width: 100% !important;
    }

    .page-da-ga__cta-buttons {
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
    }

    .page-da-ga__btn {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-da-ga__btn-large {
        font-size: 1.1em !important;
        padding: 16px 20px !important;
    }

    .page-da-ga__hero-image {
        min-width: unset !important;
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
    }
    .page-da-ga__hero-side-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Module 1 - Intro Section (three square images) */
    .page-da-ga__intro-section,
    .page-da-ga__why-choose-section,
    .page-da-ga__guide-section,
    .page-da-ga__promo-section,
    .page-da-ga__faq-section,
    .page-da-ga__cta-section,
    .page-da-ga__latest-news-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
}