/* ==========================================================================
   CONTACT US - MODERN LUXURY REDESIGN
   ========================================================================== */

:root {
    --nz-green: #0A2A20;
    --nz-gold: #C5A059;
}

.contact-hero {
    position: relative;
    padding: 160px 0 100px;
    background: #000 url('../images/scene4.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(10,42,32,0.7) 0%, rgba(10,42,32,0.9) 100%);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.contact-hero .lead {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 30px;
}

.contact-info-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-info-item .icon {
    color: var(--nz-gold);
    margin-bottom: 5px;
}

.contact-info-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.contact-info-item a:hover {
    color: var(--nz-gold);
}

/* Form Section */
.contact-form-section {
    padding: 100px 0;
    background: #fff;
}

.form-container {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 30px 100px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
}

.section-title-wrap {
    margin-bottom: 50px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.form-control {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f9f9f9;
}

.form-control:focus {
    background: #fff;
    border-color: var(--nz-gold);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
}

.btn-cta {
    background: var(--nz-gold);
    color: #fff;
    border: none;
    padding: 18px 50px;
    border-radius: 100px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.5);
    color: #fff;
}

.btn-cta:disabled {
    background: #ccc;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

/* Reveal Helpers */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}





