/* ==========================================================================
   BRAND ENQUIRY PAGE STYLES
   ========================================================================== */

/* Page Background */
.gnv-brand-enquiry-page {
    background-color: var(--gnv-white);
    color: var(--gnv-black);
    font-family: var(--font-body);
}

/* -----------------------------------------
   Hero Section
----------------------------------------- */
.be-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: var(--gnv-black);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.be-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(11,15,21,0.95) 0%, rgba(11,15,21,0.7) 50%, rgba(11,15,21,0) 100%);
    z-index: 1;
}

.be-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 var(--spacing-md);
    margin-left: max(5%, calc((100% - var(--container-max-width)) / 2));
}

.be-kicker {
    display: inline-block;
    color: var(--gnv-green);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.be-hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--gnv-white);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

.be-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 40px;
}

/* -----------------------------------------
   USPs Section
----------------------------------------- */
.be-usps {
    padding: 100px 20px;
    background-color: #FAFAFA;
}

.be-usps-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.be-usps-header {
    text-align: center;
    margin-bottom: 70px;
}

.be-usps-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gnv-black);
    margin-bottom: 20px;
}

.be-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.be-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.be-card.is-animated {
    opacity: 1;
    transform: translateY(0);
}

.be-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.be-card-img {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.be-card-content {
    padding: 30px;
}

.be-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gnv-black);
    margin-bottom: 15px;
}

.be-card-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* -----------------------------------------
   Form Section
----------------------------------------- */
.be-form-section {
    position: relative;
    padding: 100px 20px;
    background-color: var(--gnv-black);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.be-form-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11,15,21,0.85); /* Dark overlay */
    z-index: 1;
}

.be-form-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 16px;
}

.be-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.be-form-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gnv-white);
    margin-bottom: 15px;
}

.be-form-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

/* Form Styles */
.be-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.be-form-row {
    display: flex;
    gap: 20px;
}

.be-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.be-form label {
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.be-form input,
.be-form select,
.be-form textarea {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--gnv-white);
    padding: 15px 20px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.be-form input:focus,
.be-form select:focus,
.be-form textarea:focus {
    outline: none;
    border-color: var(--gnv-green);
    background: rgba(0,0,0,0.5);
}

.be-form textarea {
    resize: vertical;
    min-height: 120px;
}

.be-form option {
    background-color: var(--gnv-black);
    color: var(--gnv-white);
}

.be-submit-btn {
    background-color: var(--gnv-green);
    color: var(--gnv-black);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-top: 10px;
    display: inline-block;
    align-self: center;
}

.be-submit-btn:hover {
    background-color: #9cd145;
    transform: translateY(-2px);
}

/* Status Messages */
.be-form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.be-form-status.success {
    background-color: rgba(140, 179, 63, 0.2);
    color: var(--gnv-green);
    border: 1px solid var(--gnv-green);
    display: block;
}

.be-form-status.error {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .be-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .be-hero h1 { font-size: 3rem; }
    .be-grid { grid-template-columns: 1fr; }
    .be-form-row { flex-direction: column; gap: 20px; }
    .be-form-container { padding: 30px 20px; }
}
