/* =========================================
   PAGES STYLESHEET (ABOUT, CONTACT, LEGAL)
   ========================================= */

/* Hero Banner Common */
.page-hero {
    position: relative;
    padding: 120px 0 80px;
    background-color: var(--bg-main);
    overflow: hidden;
}

.page-hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.page-hero-decor-circle-left {
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176, 138, 87, 0.04) 0%, transparent 70%);
}

.page-hero-decor-circle-right {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176, 138, 87, 0.03) 0%, transparent 70%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: var(--primary-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: 48px;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.page-hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 90px 0 60px;
    }
    .page-hero-title {
        font-size: 32px;
    }
    .page-hero-subtitle {
        font-size: 14.5px;
    }
}

/* =========================================
   ABOUT US PAGE SPECIFIC
   ========================================= */

/* Story & Mission Section */
.about-mission-section {
    padding: 80px 0;
    background-color: var(--bg-surface);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-content h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    color: var(--text-main);
    margin-bottom: 20px;
}

.about-text-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 500;
}

.about-stats-showcase {
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-stat-box {
    text-align: center;
}

.about-stat-number {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    color: var(--text-main);
    margin-bottom: 6px;
    display: block;
}

.about-stat-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .about-mission-section {
        padding: 60px 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-text-content h3 {
        font-size: 26px;
    }
    .about-stats-showcase {
        padding: 30px;
        gap: 20px;
    }
}

/* Core Values Section */
.values-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.value-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(176, 138, 87, 0.35);
    box-shadow: var(--shadow-lg);
}

.value-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-light);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 24px;
}

.value-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.value-card p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* =========================================
   CONTACT US PAGE SPECIFIC
   ========================================= */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-surface);
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 70px;
    align-items: flex-start;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    color: var(--text-main);
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.contact-detail-content p, 
.contact-detail-content a {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-detail-content a:hover {
    color: var(--accent);
}

/* Mock Map Frame */
.contact-mock-map {
    width: 100%;
    height: 220px;
    border-radius: var(--radius-md);
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-map-bg-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.65;
}

.mock-map-bg-circles circle {
    stroke: var(--accent);
    stroke-opacity: 0.12;
    stroke-width: 1;
    fill: none;
}

.mock-map-pin-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.mock-map-pin {
    font-size: 36px;
    color: var(--accent);
    animation: map-bounce 2s infinite ease-in-out;
}

.mock-map-pulse {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 6px;
    background-color: rgba(154, 123, 80, 0.25);
    border-radius: 50%;
    animation: map-pulse 2s infinite ease-in-out;
}

.mock-map-label {
    margin-top: 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

@keyframes map-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes map-pulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.8; }
    50% { transform: translateX(-50%) scale(1.6); opacity: 0.2; }
}

/* Contact Form Card */
.contact-form-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: var(--accent);
    background-color: var(--bg-surface);
    box-shadow: 0 0 0 4px rgba(154, 123, 80, 0.05);
}

.contact-form-group textarea {
    resize: vertical;
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 24px;
    }
}

/* =========================================
   PRIVACY POLICY & TERMS PAGES
   ========================================= */
.policy-section {
    padding: 60px 0 100px;
    background-color: var(--bg-surface);
    position: relative;
}

.policy-container {
    max-width: 840px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.policy-badge-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 30px;
    border: 1px solid var(--border);
}

.policy-content {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-sm);
}

.policy-section-block {
    margin-bottom: 36px;
}

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

.policy-section-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-section-block h3 span {
    color: var(--accent);
    font-weight: 600;
}

.policy-section-block p {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 500;
}

.policy-section-block ul {
    margin-bottom: 16px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-section-block ul li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
}

.policy-section-block ul li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 30px 20px;
    }
}
