/* ========================================
   Legal Pages CSS - Refund Policy
   Daintree Skill India Development College
   ======================================== */

/* Hero Section */
.dt-policy-hero {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 12px;
    margin-bottom: 50px;
    text-align: center;
}

.dt-policy-hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 0;
    font-family: "Finlandica Headline", sans-serif;
    color: white;
    letter-spacing: 1px;
}

.dt-policy-hero-text {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 1px;
}

/* Highlights Grid */
.dt-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.dt-highlight-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #4CAF50;
}

.dt-highlight-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.dt-highlight-icon {
    font-size: 45px;
    color: #4CAF50;
    margin-bottom: 15px;
}

.dt-highlight-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    margin-top: 0;
    font-family: "Finlandica Headline", sans-serif;
    letter-spacing: 1px;
}

.dt-highlight-text {
    font-size: 16px;
    color: #777;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 1px;
}

/* Policy Section */
.dt-policy-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.dt-policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.dt-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-top: 0;
    font-family: "Finlandica Headline", sans-serif;
    letter-spacing: 1px;
}

.dt-section-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
    letter-spacing: 1px;
}

/* Policy List */
.dt-policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dt-policy-list li {
    font-size: 16px;
    color: #555;
    padding-left: 30px;
    margin-bottom: 14px;
    position: relative;
    line-height: 1.7;
    letter-spacing: 1px;
}

.dt-policy-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 18px;
}

/* Process Flow */
/* Refund Process Container */
.dt-refund-process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

.dt-refund-process-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50 0%, #45a049 50%, #4CAF50 100%);
    opacity: 0;
}

/* Individual Process Step Card */
.dt-refund-process-step {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #4CAF50;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.dt-refund-process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.02) 0%, rgba(76, 175, 80, 0) 100%);
    pointer-events: none;
}

.dt-refund-process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(76, 175, 80, 0.15);
}

.dt-step-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.dt-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    font-size: 26px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.dt-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    margin-top: 5px;
    font-family: "Finlandica Headline", sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.dt-step-description {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0.3px;
    margin-bottom: 15px;
}

.dt-step-details {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.dt-step-badge {
    display: inline-block;
    background: #f0f8f5;
    color: #4CAF50;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dt-refund-process-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }

    .dt-refund-process-step {
        padding: 25px;
    }

    .dt-step-header {
        gap: 15px;
    }

    .dt-step-number {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .dt-step-title {
        font-size: 16px;
    }

    .dt-step-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .dt-refund-process-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dt-refund-process-step {
        padding: 20px;
    }

    .dt-step-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .dt-step-title {
        font-size: 15px;
    }
}

/* Important Box */
.dt-important-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe8a8 100%);
    border-left: 5px solid #ff9800;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    display: flex;
    gap: 20px;
}

.dt-important-icon {
    color: #ff9800;
    font-size: 32px;
    min-width: 50px;
    text-align: center;
}

.dt-important-content {
    flex: 1;
}

.dt-important-title {
    font-size: 18px;
    font-weight: 600;
    color: #d47f00;
    margin-bottom: 10px;
    margin-top: 0;
    font-family: "Finlandica Headline", sans-serif;
    letter-spacing: 1px;
}

.dt-important-text {
    font-size: 16px;
    color: #b8621f;
    margin: 0;
    line-height: 1.6;
    letter-spacing: 1px;
}

/* Timeline */
.dt-timeline-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
    position: relative;
}

.dt-timeline-container:before {
    content: "";
    position: absolute;
    top: 50px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, #4CAF50 0%, #45a049 50%, #4CAF50 100%);
    z-index: 1;
}

.dt-timeline-step {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border-top: 4px solid #4CAF50;
}

.dt-timeline-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.dt-timeline-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: -37px auto 18px;
    border: 4px solid white;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.dt-timeline-step-content {
    text-align: center;
}

.dt-timeline-step-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    margin-top: 0;
    font-family: "Finlandica Headline", sans-serif;
    letter-spacing: 1px;
}

.dt-timeline-step-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.dt-timeline-step-duration {
    font-size: 14px;
    color: #4CAF50;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 1px;
}

.dt-timeline-step-duration i {
    font-size: 16px;
}

/* FAQ Grid */
.dt-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.dt-faq-box {
    background: white;
    border-radius: 10px;
    padding: 25px;
    border-left: 5px solid #4CAF50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.dt-faq-box:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.dt-faq-q {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    margin-top: 0;
    font-family: "Finlandica Headline", sans-serif;
    letter-spacing: 1px;
}

.dt-faq-a {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    letter-spacing: 1px;
}

/* Contact Section */
.dt-contact-section {
    background: linear-gradient(135deg, #f0f8f5 0%, #e8f5f0 100%);
    padding: 40px;
    border-radius: 12px;
    border: none;
}

.dt-contact-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.dt-contact-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.dt-contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.dt-contact-icon {
    font-size: 40px;
    color: #4CAF50;
    margin-bottom: 15px;
}

.dt-contact-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    margin-top: 0;
    font-family: "Finlandica Headline", sans-serif;
    letter-spacing: 1px;
}

.dt-contact-value {
    font-size: 16px;
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    letter-spacing: 1px;
}

.dt-contact-value:hover {
    color: #45a049;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dt-policy-hero {
        padding: 40px 25px;
        margin-bottom: 40px;
    }

    .dt-policy-hero-title {
        font-size: 32px;
    }

    .dt-policy-hero-text {
        font-size: 17px;
    }

    .dt-highlights-grid {
        gap: 20px;
        margin-bottom: 50px;
    }

    .dt-highlight-box {
        padding: 25px;
    }

    .dt-section-title {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .dt-policy-section {
        margin-bottom: 50px;
        padding-bottom: 35px;
    }

    .dt-contact-section {
        padding: 35px;
    }

    .dt-contact-boxes {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .dt-policy-hero {
        padding: 35px 20px;
        margin-bottom: 35px;
        border-radius: 8px;
    }

    .dt-policy-hero-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .dt-policy-hero-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .dt-highlights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .dt-highlight-box {
        padding: 22px;
    }

    .dt-highlight-icon {
        font-size: 38px;
    }

    .dt-highlight-title {
        font-size: 18px;
    }

    .dt-highlight-text {
        font-size: 15px;
    }

    .dt-section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .dt-section-text {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .dt-policy-list li {
        font-size: 15px;
        padding-left: 28px;
        margin-bottom: 12px;
    }

    .dt-policy-section {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .dt-process-flow {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        align-items: stretch;
    }

    .dt-process-item {
        flex: 0 1 calc(50% - 8px);
        min-width: 130px;
        min-height: 190px;
        padding: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .dt-process-arrow {
        flex-basis: 100%;
        text-align: center;
        margin: 4px 0;
        font-size: 16px;
        transform: rotate(90deg);
    }

    .dt-process-title {
        font-size: 14px;
    }

    .dt-process-desc {
        font-size: 12px;
    }

    .dt-important-box {
        padding: 25px;
        gap: 15px;
        margin: 35px 0;
    }

    .dt-important-icon {
        font-size: 28px;
    }

    .dt-important-title {
        font-size: 16px;
    }

    .dt-important-text {
        font-size: 15px;
    }

    .dt-timeline-container {
        gap: 16px;
    }

    .dt-timeline-container:before {
        top: 44px;
    }

    .dt-timeline-step {
        padding: 22px;
    }

    .dt-timeline-step-number {
        width: 44px;
        height: 44px;
        font-size: 20px;
        margin: -32px auto 16px;
    }

    .dt-timeline-step-title {
        font-size: 16px;
    }

    .dt-timeline-step-text {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .dt-timeline-step-duration {
        font-size: 13px;
    }

    .dt-faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dt-faq-box {
        padding: 22px;
    }

    .dt-faq-q {
        font-size: 15px;
    }

    .dt-faq-a {
        font-size: 14px;
        line-height: 1.6;
    }

    .dt-contact-section {
        padding: 30px;
        border-radius: 8px;
    }

    .dt-contact-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 25px;
    }

    .dt-contact-box {
        padding: 25px;
    }

    .dt-contact-icon {
        font-size: 36px;
    }

    .dt-contact-title {
        font-size: 17px;
    }

    .dt-contact-value {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .dt-policy-hero {
        padding: 30px 16px;
        margin-bottom: 30px;
    }

    .dt-policy-hero-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .dt-policy-hero-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .dt-highlights-grid {
        gap: 14px;
        margin-bottom: 35px;
    }

    .dt-highlight-box {
        padding: 18px;
        border-top: 3px solid #4CAF50;
    }

    .dt-highlight-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .dt-highlight-title {
        font-size: 16px;
    }

    .dt-highlight-text {
        font-size: 14px;
    }

    .dt-section-title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .dt-section-text {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .dt-policy-list li {
        font-size: 14px;
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .dt-policy-section {
        margin-bottom: 35px;
        padding-bottom: 25px;
    }

    .dt-process-flow {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: stretch;
    }

    .dt-process-item {
        flex: 0 1 100%;
        min-width: unset;
        min-height: 160px;
        padding: 14px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .dt-process-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .dt-process-title {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .dt-process-desc {
        font-size: 11px;
    }

    .dt-process-arrow {
        display: none;
    }

    .dt-important-box {
        padding: 20px;
        gap: 12px;
        margin: 30px 0;
    }

    .dt-important-icon {
        font-size: 26px;
        min-width: 45px;
    }

    .dt-important-title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .dt-important-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .dt-timeline-container {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 25px;
    }

    .dt-timeline-container:before {
        display: none;
    }

    .dt-timeline-step {
        padding: 18px;
    }

    .dt-timeline-step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin: -28px auto 14px;
    }

    .dt-timeline-step-title {
        font-size: 15px;
    }

    .dt-timeline-step-text {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .dt-timeline-step-duration {
        font-size: 12px;
    }

    .dt-faq-box {
        padding: 18px;
        border-left-width: 4px;
    }

    .dt-faq-q {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .dt-faq-a {
        font-size: 13px;
        line-height: 1.5;
    }

    .dt-contact-section {
        padding: 25px;
    }

    .dt-contact-boxes {
        gap: 16px;
        margin-top: 20px;
    }

    .dt-contact-box {
        padding: 20px;
    }

    .dt-contact-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .dt-contact-title {
        font-size: 16px;
    }

    .dt-contact-value {
        font-size: 14px;
    }
}
