/* Pages Styles (About, Contact, Privacy, Terms) */
.page-hero {
    position: relative;
    padding: 180px 0 80px;
    background: radial-gradient(circle at 50% -20%, rgba(212, 183, 93, 0.15) 0%, rgba(0, 4, 13, 0) 60%), #00040D;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.page-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #FFFFFF 0%, #D4B75D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.page-content-sec {
    padding: 80px 0;
    background: #000000;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.page-content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-rich-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--gold-color, #d4b75d);
    margin: 40px 0 20px;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 8px;
}

.page-rich-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color, #ff3c00);
}

.page-rich-content h2:first-of-type {
    margin-top: 0;
}

.page-rich-content p {
    margin-bottom: 24px;
    font-size: 16px;
    text-align: justify;
}

.page-rich-content ul {
    margin: 0 0 24px 20px;
    list-style: none;
}

.page-rich-content ul li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 20px;
    font-size: 16px;
    text-align: justify;
}

.page-rich-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color, #ff3c00);
    font-weight: bold;
}

/* Contact Page Specific Layout */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

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

.contact-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 183, 93, 0.3);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 183, 93, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-wrapper img {
    width: 24px;
    height: 24px;
}

.contact-details-text h4 {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.contact-details-text p, .contact-details-text a {
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    line-height: 1.5;
}

.contact-details-text a:hover {
    color: var(--gold-color, #d4b75d);
}

/* Premium Form Styles */
.contact-form-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 183, 93, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-color, #d4b75d);
    background: rgba(255, 255, 255, 0.05);
}

textarea.form-control {
    min-height: 120px;
    max-height: 250px;
    resize: vertical;
}

.form-submit-btn {
    width: 100%;
    background: linear-gradient(90deg, #D4B75D 0%, #9C7E21 100%);
    border: none;
    border-radius: 8px;
    padding: 16px;
    color: #000000;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(156, 126, 33, 0.3);
}

.form-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .page-hero {
        padding: 150px 0 60px !important;
    }
    .page-title {
        font-size: 32px;
    }
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Producer profile styling in About page */
.producer-container {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: flex-start;
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.producer-image-wrapper {
    flex-shrink: 0;
    width: 250px;
    position: relative;
}

.producer-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 2px solid rgba(212, 183, 93, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.producer-container:hover .producer-img {
    transform: scale(1.03);
    border-color: var(--gold-color, #d4b75d);
}

.producer-details {
    flex-grow: 1;
}

.producer-details h2 {
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    .producer-container {
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
        gap: 30px;
        text-align: center;
    }
    .producer-image-wrapper {
        width: 200px;
    }
}

/* Contact Form Alerts */
.form-alert {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 25px;
    display: none;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}
.form-alert.alert-success {
    background: rgba(212, 183, 93, 0.1);
    border: 1px solid rgba(212, 183, 93, 0.4);
    color: #D4B75D;
}
.form-alert.alert-error {
    background: rgba(255, 60, 0, 0.1);
    border: 1px solid rgba(255, 60, 0, 0.4);
    color: #FF3C00;
}
.required-star {
    color: #FF3C00;
    margin-left: 3px;
    font-weight: bold;
}
