* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
header {
    background: linear-gradient(to right, #93c5fd, #1e3a8a);
    color: white;
    position: relative;
    padding: 15px 70px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-brand {
    display: flex;
    align-items: flex-end;
    padding-left: 100px;
}

.logo {
    height: 70px;
    width: auto;
}

.call-us {
    position: absolute;
    top: 10px;
    right: 103px;
    font-style: italic;
    font-size: 0.95rem;
	padding-top: 10px;
	opacity: 0.7;
	
}

.signIn-btn {
    background: rgba(255,255,255,0.15);
    border: 2px solid white;
    border-radius: 25px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.signIn-btn:hover {
    background: white;
    color: #1e3a8a;
}

nav {
    margin-top: 25px;
    padding-left: 396px;
	padding-top: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: .92rem;
    padding: 5px;
}

nav a:hover,
nav a.active {
    color: #050b1a;
}

main {
    flex: 1;
    text-align: center;
    padding: 60px 20px 60px 20px;
}


/* =========================
   CONTACT PAGE
========================= */

.contact-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;

    max-width: 1300px;
    width: 100%;

    margin: 0px auto 20px auto;
    padding: 0 40px;
}

/* BLUE DIVIDER */
.contact-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 70%;
    transform: translateX(-50%);
    width: 4px;
    background: linear-gradient(to right, #93c5fd, #1e3a8a);
    opacity: 0.95;
}

/* FORM SIDE */
.contact-form {
    flex: 3;
    text-align: left;
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-form .row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .row.full {
    flex-direction: column;
}

/* INPUT BOXES */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1.1rem;
    font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.contact-form button {
	background: #eff6ff;
    border-radius: 16px;
    background-color: #475569;
    color: white;
    padding: 14px 22px;
    cursor: pointer;
    font-size: 1rem;
	box-shadow: 0 6px 20px rgba(0,0,0,.08);
}

.contact-form button:hover {
    background-color: #3b82f6;
}

/* MAILING INFO */
.mailing-info {
    flex: 1;
    background-color: transparent;
    padding-left: 50px;
    border-radius: 0;
    height: fit-content;
    text-align: left;
	min-width: 250px;
}

.mailing-info h2 {
    margin-bottom: 20px;
    font-size: 1.3rem;
	color: #1e3a8a;
}

.mailing-info p {
    line-height: 2;
    font-size: 1.05rem;
}

/* PAGE TEXT */
h1 {
    padding-bottom: 10px;
    text-align: left;
    padding-left: 80px;
}

.header-paragraph p {
    text-align: left;
    padding-bottom: 70px;
    padding-left: 80px;
}

.paragraph p {
    text-align: left;
    padding-left: 130px;
    padding-bottom: 20px;
}

.mail-logo {
    max-width: 60px;
    padding-bottom: 10px;
	padding-left:0;
	padding-top: 60px;
}

/* MAP */
.map-container {
    max-width: 1400px;
    margin: 10px auto 0 auto;
    padding: 15px 40px 20px 40px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}
/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

/* FOOTER BASE */
footer {
    background: linear-gradient(to right, #93c5fd, #1e3a8a);
    color: white;
    padding: 40px 70px;
}

/* 3-COLUMN LAYOUT */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* LEFT NAV */
.footer-left h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-left ul {
    list-style: none;
    padding: 0;
}

.footer-left ul li {
    margin-bottom: 8px;
}

.footer-left ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s ease;
}

.footer-left ul li a:hover {
    opacity: 1;
    color: #475569;
}

/* CENTER */
.footer-center {
    text-align: center;
    flex: 1;
    font-size: 14px;
    opacity: 0.9;
	padding-left: 120px;
}

.footer-center p {
    margin: 5px 0;
}

/* RIGHT SIDE */
.footer-right {
    text-align: right;
    font-size: 14px;
    opacity: 0.85;
    max-width: 220px;
}

/* BACK TO TOP BUTTON */
.back-to-top {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    color: #93c5fd;
    text-decoration: none;
    transition: 0.2s ease;
}

.back-to-top:hover {
    color: white;
    text-decoration: underline;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }
}

.dropdown {
    position: relative;
    padding-bottom: 12px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    background: white;
    min-width: 300px;

    list-style: none;
    padding: 10px 0;
    margin: 0;

    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);

    z-index: 1000;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;

    color: #1e3a8a;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: #eff6ff;
    color: #1e3a8a;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.contact-header {
    max-width: 1300px;
    margin: 0 auto 70px auto;
    padding: 0 40px;
    background: none;
    box-shadow: none;
}

.contact-header h1 {
    text-align: left;
    font-size: 3rem;
    color: #1e3a8a;
    padding: 0;
    margin-bottom: 20px;
}

.contact-header p {
    text-align: left;
    max-width: 800px;
    margin: 0;
    color: #475569;
    line-height: 1.9;
}
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.appointment-section {
    max-width: 1100px;
    margin: 0px auto 120px auto;
    padding: 0 40px;
    text-align: left;
	background-color: #eff6ff !important;
}

.appointment-form {
    margin-top: 20px;
}

.appointment-form .row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.appointment-form .row.full {
    flex-direction: column;
}

.appointment-form input,
.appointment-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1.05rem;
    font-family: inherit;
    background: white;
}

.appointment-form input:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.appointment-form button {
    background-color: #475569;
    color: white;
    border: none;
    padding: 14px 22px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
}

.appointment-form button:hover {
    background-color: #3b82f6;
}

.paragraph1 p {
    text-align: left;
    padding-left: 230px;
    padding-bottom: 20px;
}

.nav-arrow {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin-left: 6px;
    margin-bottom: 4.5px;
    transition: all 0.3s ease;
}

.dropdown:hover .nav-arrow {
    transform: rotate(-135deg);
}

.appointment-section,
.contact-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    padding: 40px;
}

.section-title-find-us {
	font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
	padding-top: 100px;
	
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-header p {
    color: #64748b;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}
.contact-form-area {
    flex: 3;
}