/* General Styles for Products Page */
body {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    background-color: #181515; /* Light gray background */
    margin: 0;
    justify-content: center;
    align-items: start;
    line-height: 1.6;
    color: #faf9f9; /* Dark text color */
}

/* Side Banners */
.side-banner {
    position: fixed; /* Fix banners to sides of the window */
    top: 0;
    width: 15%; /* Width of banners */
    height: 100%; /* Full height */
    overflow: hidden;
    z-index: 1;
}

.side-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure images fill the space without distortion */
}

/* Left Banner */
.left-banner {
    left: 0;
}

/* Right Banner */
.right-banner {
    right: 0;
}

/* Main Content */
.content {
    position: relative;
    z-index: 2;
    width: calc(100% - 30%); /* Subtract side banners (15% each) */
    max-width: 800px; /* Optional: Limit maximum width */
    text-align: center;
    color: #181515;
    background-color: #fffffff6; /* Slight transparency */
    padding: 2%; /* Add padding around the content */
    border-radius: 0.5%; /* Rounded corners */
    margin: 20vh 15vw 20vh 15vw; /* Center horizontally using 15% margin on both sides */

}

/* Header Styles */
.main-header {

    text-align: center; /* Center text inside the header */
    margin: 0; /* Remove unnecessary margin */
    position: fixed; /* Keeps the header at the top */
    top: 0; /* Align to the top of the viewport */
    left: 0; /* Align to the left side */
    width: 100%; /* Full width across the page */
    height: 15%; /* Occupy 13% of the viewport height */
    box-sizing: border-box; /* Include padding in width/height calculation */
    padding: 1%; /* Add padding for spacing */
    background-color: #fffffff6; /* Semi-transparent background */
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    z-index: 10; /* Ensure it's above other content */
    display: flex;
    flex-direction: column;
}


/* Invisible Button Around Text */
.invisible-button {
    display: inline-block; /* Make the button span the text */
    text-decoration: none; /* Remove underline */
    color: inherit; /* Match the text color */
    background-color: transparent; /* Transparent background */
    border: none; /* Remove borders */
    cursor: pointer; /* Show pointer cursor on hover */
    padding: 1% 2%; /* Add some padding for click area */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
}

.invisible-button:hover {
    background-color: rgba(0, 0, 0, 0.1); /* Optional: Slight background on hover */
    color: #1f1b1b; /* Optional: Change text color on hover */
    border-radius: 0.5%; /* Optional: Rounded edges on hover */
}

.main-header h1 {
    font-size: clamp(1.5rem, 2.6vw, 4rem);; /* Keep the larger font size */
    font-family: 'Montserrat', sans-serif; /* Maintain the Playfair Display font */
    font-weight: 300; 
    color: #181515; /* Ensure the text is black */
    text-transform: uppercase; /* Make the text uppercase */
    letter-spacing: 0.2%; /* Add spacing between letters */
    margin: 0; /* Remove default margin */
}

.main-header h1 .invisible-button {
    color: inherit; /* Inherit the black color from the h1 */
    background-color: transparent; /* Ensure no background color */
    text-decoration: none; /* Remove underline */
    border: none; /* Remove borders */
    cursor: pointer; /* Pointer cursor */
    padding: 0; /* Remove extra padding */
    transition: none; /* Remove hover effects for main text */
}


header .header-links {
    margin: 0; /* Remove default margin */
    gap: 2%; /* Space between links */
    display: flex; /* Arrange links in a row */
    flex-direction: row; /* Ensure links are horizontal */
    justify-content: flex-end; /* Align links to the right */
    align-items: center; /* Vertically align the links */
}

.header-links a {
    text-decoration: none; /* Remove underline */
    font-size: 1.5 rem 1vw, 3rem; /* Adjust font size */
    color: #181515; /* Text color */
    font-family: 'Montserrat', sans-serif; /* Set font to Playfair Display */
    transition: color 0.3s ease; /* Smooth color transition */
    margin-left: 20%; /* Add spacing between links */
}

.header-links a:hover {
    color: #065255; /* Highlight color on hover */
    text-decoration: underline; /* Optional hover effect */
}

/* =============================================
   CONTACT FORM STYLES — add to consulting.css
   ============================================= */

.contact-section {
    width: 100%;
    padding: 80px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.contact-inner {
    max-width: 680px;
    margin: 0 auto;
}

.contact-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 0.12em;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-subtext {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 40px;
    letter-spacing: 0.02em;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.4s ease;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    background: #fff;
    border: 1.5px solid #d8d8d8;
    border-radius: 2px;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    font-weight: 500;
}

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

.contact-submit {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: #1a1a1a;
    border: none;
    border-radius: 2px;
    padding: 14px 28px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    margin-top: 4px;
}

.contact-submit:hover {
    background: #333;
    transform: translateY(-1px);
}

.contact-submit:active {
    transform: translateY(0);
}

.btn-arrow {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.contact-submit:hover .btn-arrow {
    transform: translateX(4px);
}

.form-success {
    display: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
    padding: 30px 0;
    letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-heading {
        font-size: 1.5rem;
    }

    .contact-submit {
        width: 100%;
        justify-content: center;
    }
}

/* Thank you message */
.form-thankyou {
    display: none;
    padding: 60px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    color: #1a1a1a;
}

