/* ===== POLICY PAGES STYLES ===== */
.policy-page {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, 
        var(--bg-secondary) 0%, 
        rgba(30, 64, 175, 0.02) 50%,
        var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.policy-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(135deg, 
        rgba(30, 64, 175, 0.05) 0%, 
        rgba(236, 72, 153, 0.03) 100%);
    z-index: 0;
}

.policy-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-color), var(--secondary-color)) border-box;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    position: relative;
    z-index: 1;
}

.policy-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
}

.policy-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.policy-date {
    color: var(--text-secondary);
    font-size: 1rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-neumorphic-md);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.policy-content:hover {
    box-shadow: var(--shadow-neumorphic-lg);
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-color), var(--secondary-color)) border-box;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    position: relative;
    padding-left: 1rem;
}

.policy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.policy-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul,
.policy-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.policy-section li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.policy-section a:hover {
    text-decoration: underline;
}

.contact-box {
    background: linear-gradient(135deg, 
        rgba(30, 64, 175, 0.05) 0%, 
        rgba(236, 72, 153, 0.03) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    margin-top: 1.5rem;
    box-shadow: var(--shadow-neumorphic-sm);
    transition: var(--transition);
}

.contact-box:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-neumorphic-md);
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

/* ===== THANK YOU PAGE ===== */
.thankyou-page {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, 
        rgba(30, 64, 175, 0.04) 0%, 
        rgba(236, 72, 153, 0.03) 50%,
        rgba(245, 158, 11, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.thankyou-page::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite;
}

.thankyou-page::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
    animation-delay: 2s;
}

.thankyou-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.thankyou-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    animation: scaleIn 0.5s ease-out;
    position: relative;
}

.thankyou-icon svg {
    filter: drop-shadow(0 10px 30px rgba(30, 64, 175, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thankyou-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.thankyou-message {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.thankyou-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-neumorphic-md);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition-bounce);
}

.info-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-neumorphic-lg);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-content a:hover {
    text-decoration: underline;
}

.thankyou-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.thankyou-additional {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-neumorphic-md);
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.thankyou-additional h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.additional-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    text-align: left;
    transition: var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-neumorphic-sm);
}

.additional-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-neumorphic-md);
}

.additional-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.additional-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.link-arrow:hover {
    gap: 0.5rem;
}

.thankyou-contact {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-neumorphic-md);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.thankyou-contact h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-primary);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-neumorphic-sm);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.method:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-neumorphic-md);
}

.method svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.method span {
    color: var(--text-secondary);
}

.method a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.method a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE POLICY PAGES ===== */
@media (max-width: 768px) {
    .policy-page,
    .thankyou-page {
        padding: 6rem 0 3rem;
    }

    .policy-content {
        padding: 2rem;
    }

    .policy-header h1,
    .thankyou-content h1 {
        font-size: 1.75rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.125rem;
    }

    .thankyou-info {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .thankyou-additional {
        padding: 2rem;
    }

    .additional-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-contact {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .policy-section ul,
    .policy-section ol {
        padding-left: 1.25rem;
    }

    .info-item {
        padding: 1.5rem;
    }

    .thankyou-additional,
    .thankyou-contact {
        padding: 1.5rem;
    }
}
