/* About/Contact Page Specific Styles */
/* Uses hhbg3 (top) and hhbg4 (bottom) with standard down-scroll parallax */

/* ===== PARALLAX SECTIONS ===== */
#parallax-about-1 {
    background-image: url('../Images/Hhbg3.jpg');
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#parallax-about-2 {
    background-image: url('../Images/Hhbg4.jpg');
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* ===== CTA BUTTON ===== */
.cta-button {
    display: inline-block;
    background-color: #FFFFFF;
    color: #142238;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid #FFFFFF;
}

.cta-button:hover {
    background-color: transparent;
    color: #FFFFFF;
}

/* ===== ACTIVE NAV LINK ===== */
.nav-link.active {
    color: #142238;
    font-weight: 700;
}

/* ===== FULL-WIDTH CARDS ===== */
#aboutBlogCard,
.logo-divider {
    width: 100%;
}

.logo-divider {
    display: block;
    order: 999;
}

/* ===== CONSISTENT CARD FONT SIZING ===== */
/* Inherit from global styles-clean.css */
.content-card > h2 {
    font-size: 1.2em;
}

.content-card > p {
    font-size: 0.88rem;
}

/* ===== CONTACT FORM ===== */
#contactCard {
    background-color: #142238;
}

.contact-form {
    width: 90%;
    max-width: 500px;
    margin: 2rem auto 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #C0C6CD;
    border-radius: 6px;
    background-color: #FFFFFF;
    color: #142238;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFFFFF;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23142238' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .cta-button {
    width: 100%;
    cursor: pointer;
    font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
    .contact-form {
        width: 95%;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
}

/* ===== SOCIAL ICONS (WHITE) ===== */
.social-icons-white {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.4rem;
}

.social-link-white {
    color: #FFFFFF;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-block;
}

.social-link-white:hover {
    transform: scale(1.1);
    opacity: 0.7;
}

.social-link-white svg {
    display: block;
    width: 51px;
    height: 51px;
}

@media screen and (max-width: 768px) {
    .social-icons-white {
        gap: 1.5rem;
    }
    
    .social-link-white svg {
        width: 28px;
        height: 28px;
    }
}

/* ===== BUSINESS INQUIRIES CAROUSEL ===== */
#businessCarousel .carousel-slides {
    min-height: 200px;
}

#businessCarousel .carousel-image-wrapper {
    max-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#businessCarousel .carousel-image {
    max-height: 150px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    #businessCarousel .carousel-slides {
        min-height: 150px;
    }
    
    #businessCarousel .carousel-image-wrapper {
        max-height: 120px;
    }
    
    #businessCarousel .carousel-image {
        max-height: 120px;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #C0C6CD;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #142238;
    font-size: 1rem;
    font-family: Arial, sans-serif;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFFFFF;
}

@media screen and (max-width: 768px) {
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on mobile */
    }
}
