/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    contact-us.css
    Created on : Dec 2, 2025, 11:37:17 p.m.
    Author     : Justin
*/
.contact-section {
    display: flex;
    justify-content: center;
    align-items: stretch;  /* <-- makes children stretch to same height */
    gap: 40px;
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.contact-info, .contact-map {
    flex: 1 1 500px;
    min-width: 300px;
    display: flex;            /* make them flex containers */
    flex-direction: column;   /* content stacks vertically */
}

.contact-info {
    background: rgba(255, 255, 255, 0.05); /* very subtle light overlay */
    backdrop-filter: blur(10px);            /* glass effect */
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: #fff;

    /* Fill height of parent flex container */
    justify-content: flex-start;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #D3A417;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info ul li {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.contact-info ul li strong {
    color: #D3A417;
}

/* Disclaimer styling */
.address-disclaimer {
    display: block;               /* ensures it goes under the address */
    font-size: 16px;              /* smaller than the main text */
    color: #ccc;                  /* subtle, modern gray */
    margin-top: 4px;              /* small spacing from the address */
    font-style: italic;           /* optional: modern touch */
}
.tax-season-disclaimer {
    display: block;               /* ensures it goes under the address */
    font-size: 16px;              /* smaller than the main text */
    color: #ccc;                  /* subtle, modern gray */
    margin-top: 4px;              /* small spacing from the address */
    font-style: italic;           /* optional: modern touch */
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);

    /* Make iframe fill parent height */
    display: flex;
}

.contact-map iframe {
    flex: 1 1 auto;           /* iframe fills entire .contact-map */
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Us hyperlinks */
.contact-us-hyperlinks,
.contact-us-hyperlinks:visited {
    color: #ffffff;
    text-decoration: underline;
}

.contact-us-hyperlinks:hover,
.contact-us-hyperlinks:focus {
    color: #D3A417;
    text-decoration: underline;
}

.contact-us-hyperlinks:active {
    color: #D3A417;
}
