/* Policy Pages Styles */
:root {
    --page-bg: #fffdf7;
    --page-text: #3A3A3A;
    --page-text-muted: #666;
    --page-border: #ddd;
    --page-card-bg: #fff;
    --page-light-bg: #f9f9f9;
    --page-gold: #EA9834;
    --page-gold-hover: #e6a800;
    --page-gradient-start: #FFF9E6;
    --page-gradient-end: #FFE8B3;
}

/* Common Page Styles */
.policy-page,
.contact-page,
.about-page,
.faq-page {
    background: var(--page-bg);
}

/* Page Container */
.page-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 16px;
    box-sizing: border-box;
}

.page-container-wide {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 16px;
    box-sizing: border-box;
}

.page-container-wide-top {
    margin-top: 60px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-container-wide-bottom {
    margin-top: 0;
    padding-top: 0;
}

.page-container-faq {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 16px;
    box-sizing: border-box;
}

.faq-header {
    text-align: center;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3A3A3A;
}

.faq-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 50px;
}

.faq-list {
    margin-left: 20px;
    line-height: 1.8;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--page-text);
}

.page-subtitle {
    color: var(--page-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Card */
.content-card {
    background: transparent;
    padding: 40px;
    border-radius: 8px;
    box-shadow: none;
}

/* Content Sections */
.content-section {
    margin-bottom: 35px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-heading {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--page-text);
}

.section-subheading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--page-text);
}

.section-text {
    color: var(--page-text-muted);
    line-height: 1.8;
    margin-bottom: 10px;
}

.section-text:last-child {
    margin-bottom: 0;
}

.section-list {
    color: var(--page-text-muted);
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 0;
    list-style-type: disc;
    padding-left: 0;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-form-card {
    background: var(--page-card-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--page-text);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--page-border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Lexend', sans-serif;
}

.form-textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: var(--page-gold);
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Lexend', sans-serif;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--page-gold-hover);
    transform: translateY(-1px);
}

.contact-info-box {
    background: var(--page-light-bg);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.contact-info-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--page-text);
}

.contact-info-text {
    color: var(--page-text-muted);
    line-height: 1.6;
}

.contact-link {
    color: var(--page-text);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--page-gold);
    font-size: 1.5rem;
}

/* About Page Styles */
.about-intro {
    text-align: center;
    margin-bottom: 50px;
}

.about-intro-tight {
    text-align: center;
    margin-bottom: 10px;
}

.about-description {
    text-align: center;
    color: var(--page-text-muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.full-width-image {
    width: 100%;
    margin-bottom: 60px;
}

.full-width-image img {
    width: 100%;
    height: auto;
    display: block;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.about-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--page-text);
}

.about-section-text {
    color: var(--page-text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.about-section-text:last-child {
    margin-bottom: 0;
}

.image-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.promise-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--page-light-bg);
    border-radius: 12px;
}

.promise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--page-gradient-start);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promise-icon img {
    width: 90px;
    height: auto;
}

.promise-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--page-text);
}

/* FAQ Page Styles */
.faq-cta-box {
    background: linear-gradient(135deg, var(--page-gradient-start) 0%, var(--page-gradient-end) 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
}

.faq-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--page-text);
}

.faq-cta-text {
    color: var(--page-text-muted);
    margin-bottom: 25px;
}

.btn-cta {
    display: inline-block;
    background: var(--page-gold);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--page-gold-hover);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .contact-grid,
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .page-container,
    .page-container-wide {
        padding: 30px 16px;
        margin: 40px auto;
    }

    .content-card,
    .contact-form-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {

    .page-container,
    .page-container-wide {
        padding: 20px 12px;
        margin: 30px auto;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .page-subtitle {
        font-size: 0.9rem;
    }

    .content-card,
    .contact-form-card {
        padding: 20px 12px;
    }

    .section-heading {
        font-size: 1.1rem;
    }

    .section-subheading {
        font-size: 1rem;
    }

    .section-text {
        font-size: 0.9rem;
    }

    .promise-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .promise-card {
        padding: 20px 15px;
    }

    .promise-icon {
        width: 60px;
        height: 60px;
    }

    .promise-icon img {
        width: 35px;
    }

    .promise-title {
        font-size: 0.9rem;
    }

    .about-section-title {
        font-size: 1.5rem;
    }

    .about-section-text {
        font-size: 0.9rem;
    }

    .faq-cta-box {
        padding: 30px 20px;
    }

    .faq-cta-title {
        font-size: 1.2rem;
    }

    .btn-cta {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* ========== SMOOTH TRANSITIONS & UI EFFECTS ========== */

/* Page fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-container {
    animation: fadeIn 0.6s ease-out;
}

/* Enhanced form input transitions */
.form-input:focus,
.form-textarea:focus {
    transform: translateY(-2px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Button press effect */
.btn-submit {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 152, 52, 0.3);
}

.btn-submit:active {
    transform: translateY(0) scale(0.98);
    transition-duration: 0.1s;
}

.btn-cta {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 152, 52, 0.3);
}

.btn-cta:active {
    transform: translateY(0) scale(0.98);
}

/* Content card hover effect - disabled since background is transparent */
/* .content-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
} */

/* Link hover effects */
.content-section a {
    transition: color 0.2s ease;
}

.content-section a:hover {
    color: var(--page-gold);
}

/* Smooth accordion transitions for FAQ */
.faq-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
}

/* Contact form card hover */
.contact-form-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Promise card hover effect */
.promise-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.promise-card:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Image box hover */
.image-box {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-box:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}