/* contact.css */

/* HERO */
.contact-hero { 
    padding: 220px 0 120px; 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center; 
    color: #fff;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

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

.contact-hero h1 { 
    font-size: 4.5rem; 
    font-weight: 800; 
    margin: 20px 0; 
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.accent-text { color: #ffcc33; }

.editorial-tag { 
    color: #ffcc33; 
    text-transform: uppercase; 
    letter-spacing: 4px; 
    font-weight: 700; 
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
}

.lead-para { 
    color: #ddd; 
    font-size: 1.3rem; 
    max-width: 750px; 
    margin: 0 auto; 
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* MAIN SECTION */
.contact-main { 
    padding: 100px 0 120px; 
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    color: #fff;
    position: relative;
}

.contact-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 204, 51, 0.3), transparent);
}

.contact-grid { 
    display: grid; 
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 80px; 
    align-items: start; 
}

/* STATUS MESSAGES */
.status-msg { padding: 20px; border-radius: 4px; margin-bottom: 40px; text-align: center; font-weight: 700; }
.success { background: rgba(40, 167, 69, 0.15); color: #2ecc71; border: 1px solid #2ecc71; }
.error { background: rgba(220, 53, 69, 0.15); color: #e74c3c; border: 1px solid #e74c3c; }

/* FORM STYLING - Height Unification */
.maverick-form { 
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%); 
    padding: 50px; 
    border-radius: 16px; 
    border: 2px solid #444;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(255, 204, 51, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.maverick-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffcc33, #ffd966);
    border-radius: 16px 16px 0 0;
}

.form-group { margin-bottom: 25px; }
.form-group label { 
    display: block; 
    margin-bottom: 10px; 
    font-weight: 600; 
    color: #aaa; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
}

/* Honeypot field - completely hidden from view */
.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    overflow: hidden !important;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%; 
    padding: 15px; 
    background: #1a1a1a; 
    border: 1px solid #333; 
    color: #fff;
    border-radius: 4px; 
    font-family: 'Inter', sans-serif; 
    outline: none; 
    transition: 0.3s ease;
    box-sizing: border-box; /* Ensures padding doesn't affect final width/height */
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
    opacity: 1;
}

/* Specific Dropdown Fix */
.form-group select {
    height: 54px; /* Matches the vertical height of the input fields */
    appearance: none;
    cursor: pointer;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus { 
    border-color: #ffcc33; 
    background: #222; 
    box-shadow: 0 0 0 3px rgba(255, 204, 51, 0.1);
}

/* GOLD CTA BUTTON */
.cta-blue-btn {
    width: 100%; 
    padding: 18px 36px; 
    background: #ffcc33 !important; 
    color: #000 !important; 
    border: 2px solid #ffcc33;
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    border-radius: 24px;
    font-size: 0.9rem;
    margin-top: 10px;
    box-shadow: 0 4px 16px rgba(255, 204, 51, 0.4);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-blue-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-blue-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-blue-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-blue-btn:hover::after {
    opacity: 1;
}

.cta-blue-btn:hover { 
    background: #fff !important; 
    border-color: #ffcc33;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 204, 51, 0.6), 0 0 20px rgba(255, 204, 51, 0.4);
    color: #000 !important;
}

.cta-blue-btn:active {
    transform: translateY(-2px) scale(1.01);
}

/* INFO SIDE */
.info-box { 
    margin-bottom: 50px; 
    padding: 35px; 
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%); 
    border-radius: 16px; 
    border: 2px solid #444;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.info-box:hover {
    border-color: rgba(255, 204, 51, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.section-sub { 
    color: #ffcc33; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 0.8rem; 
    display: block; 
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.section-sub::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: #ffcc33;
    border-radius: 2px;
}

.info-box h3 { 
    font-size: 2rem; 
    margin-bottom: 25px; 
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.contact-details p {
    margin-bottom: 15px;
    color: #888;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    background: transparent;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.contact-details p:hover {
    background: linear-gradient(135deg, rgba(255, 204, 51, 0.1), rgba(255, 204, 51, 0.05));
    border-color: rgba(255, 204, 51, 0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 204, 51, 0.15);
}

.contact-details i {
    color: #ffcc33;
    width: 20px;
    text-align: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-details p:hover i {
    color: #ffd966;
    transform: scale(1.1);
}

.contact-details a { 
    color: #ccc; 
    text-decoration: none; 
    transition: all 0.3s ease;
    flex: 1;
}

.contact-details p:hover a { 
    color: #ffcc33; 
    font-weight: 600;
}

.contact-details span {
    color: #888;
    transition: all 0.3s ease;
    flex: 1;
}

.contact-details p:hover span {
    color: #ffcc33;
    font-weight: 600;
}

.contact-showcase-btn-wrapper {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 204, 51, 0.2);
}

.contact-showcase-btn {
    display: inline-block;
    width: 100%;
    padding: 16px 24px;
    background: rgba(255, 204, 51, 0.1);
    color: #ffcc33;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #ffcc33;
    box-shadow: 0 4px 16px rgba(255, 204, 51, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
    font-size: 0.85rem;
}

.contact-showcase-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 204, 51, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.contact-showcase-btn:hover::before {
    width: 300px;
    height: 300px;
}

.contact-showcase-btn:hover {
    background: rgba(255, 204, 51, 0.2);
    color: #ffcc33;
    border-color: #ffcc33;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 204, 51, 0.5), 0 0 30px rgba(255, 204, 51, 0.3);
}

.contact-showcase-btn:active {
    transform: translateY(-2px) scale(1.01);
}

.contact-showcase-btn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.contact-showcase-btn:hover i {
    transform: scale(1.2);
}

.what-to-expect {
    background: linear-gradient(135deg, rgba(255, 204, 51, 0.08), rgba(255, 204, 51, 0.03));
    border-color: rgba(255, 204, 51, 0.3);
}

.expect-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expect-list li {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.5;
}

.expect-list i {
    color: #ffcc33;
    font-size: 1rem;
}

.optional {
    color: #666;
    font-weight: 400;
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: 0;
}

.contact-visual {
    margin-top: 30px;
}

.contact-map-img { 
    width: 100%; 
    border-radius: 12px; 
    filter: grayscale(0.8) contrast(1.1); 
    border: 2px solid #444; 
    opacity: 0.8;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.contact-visual:hover .contact-map-img {
    filter: grayscale(0.5) contrast(1.2);
    opacity: 1;
    transform: scale(1.02);
    border-color: rgba(255, 204, 51, 0.3);
}

/* MOBILE */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-hero h1 { font-size: 3rem; }
    .contact-hero { background-attachment: scroll; padding: 140px 0 60px; }
    .maverick-form { padding: 30px; }
    .info-box { padding: 25px; }
    .contact-details p {
        font-size: 1rem;
    }
}