/* Contact Page Consolidated Styles
 * Formed of Light Studio
 * This file contains only the essential styles for the contact page.
 */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    position: relative;
    background-color: #FFF;
    line-height: 1.5;
    font-size: 16px;
    color: #333;
}

/* ===== TYPOGRAPHY ===== */
a {
    color: #0b8aca;
    text-decoration: none;
}
a:hover, a:focus {
    color: #0172ab;
    text-decoration: none;
}
a:focus {
    outline: none;
}

p {
    margin: 0 0 1em;
}

img {
    max-width: 100%;
    height: auto;
}

b, strong {
    font-weight: 600;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: inherit;
    font-weight: bold;
    margin-top: 0;
}
.h1, .h2, .h3, h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 20px;
}
.h4, .h5, .h6, h4, h5, h6 {
    line-height: 1.4;
    margin-bottom: 20px;
}

h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

/* HR Short */
hr.hr-short {
    position: relative;
    max-width: 45px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: auto;
    border: 0;
    border-top: 6px solid #0b8aca;
    border-radius: 100px;
}

/* Section */
section {
    position: relative;
}

/* Cover overlay */
.cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* ===== LAYOUT ===== */
#body-content {
    position: relative;
    overflow: hidden;
}

/* Container */
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/* Columns */
[class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-push-6 { order: 2; }
    .col-md-pull-6 { order: 1; }
}

@media (min-width: 1200px) {
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
}

/* ===== PAGE HEADER ===== */
#page-header {
    position: relative;
}

.page-header-inner {
    position: relative;
    padding: 80px 5% 60px 5%;
    z-index: 3;
    color: #FFF; /* WHITE TEXT */
}
@media (max-width: 991px) {
    .page-header-inner {
        padding: 60px 5% 40px 5%;
    }
}

.page-header-caption {
    max-width: 700px;
}
@media (max-width: 991px) {
    .page-header-caption {
        max-width: 100%;
    }
}

.page-header-title {
    margin-bottom: 0;
    font-size: 32px;
    color: #FFF;
}
@media (max-width: 991px) {
    .page-header-title {
        font-size: 28px;
    }
}

.page-header-description {
    max-width: 600px;
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}
.page-header-description p {
    margin: 0;
}

/* Page header sizes */
#page-header.ph-sm .page-header-inner {
    padding: 100px 5% 80px 5%;
}

/* Page header caption sizes */
.page-header-caption.ph-caption-lg .page-header-title {
    font-size: 42px;
}
@media (max-width: 991px) {
    .page-header-caption.ph-caption-lg .page-header-title {
        font-size: 32px;
    }
}

/* Page header image */
.page-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#page-header.ph-image-on .page-header-title {
    color: #FFF;
}

/* ===== BACKGROUND IMAGE ===== */
.bg-image {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

/* Background transparent overlays */
.bg-transparent-5-dark {
    background-color: rgba(0, 0, 0, 0.5) !important;
}


/* ===== CONTACT SECTION ===== */
#contact-section {
    position: relative;
    background-color: #f5f5f5;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info-wrap {
    position: relative;
    padding: 50px 60px;
    background-color: #e0e0e0;
    border-radius: 5px;
    text-align: center;
    max-width: 600px;
    width: 100%;
}
@media (max-width: 991px) {
    .contact-info-wrap {
        padding: 30px 20px;
    }
}

.contact-info {
    color: #333;
}
.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
}
.contact-info a {
    color: #064a6e;
}
.contact-info a:hover {
    color: #033249;
}
.contact-info i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: #064a6e;
}

/* ===== SOCIAL BUTTONS ===== */
.social-buttons {
    margin-top: 20px;
}
.social-buttons ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.social-buttons ul li {
    display: inline-block;
}
.social-buttons .btn {
    display: inline-block;
    color: #064a6e;
}
.social-buttons .btn:hover {
    color: #033249;
}

.margin-top-20 {
    margin-top: 20px !important;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn-default {
    color: #333;
    background-color: #FFF;
    border-color: #ccc;
}
.btn-default:hover {
    background-color: #e6e6e6;
    border-color: #adadad;
}

.btn-link {
    color: #0b8aca;
    background-color: transparent;
    border-color: transparent;
}
.btn-link:hover {
    color: #0172ab;
}

.btn-social-min {
    padding: 8px 12px;
    font-size: 16px;
}

/* ===== FOOTER ===== */
#footer {
    position: relative;
    padding: 50px 0;
    background-color: #1a1a1a;
}
#footer.footer-minimal { padding: 30px 0; }
#footer.footer-dark { background-color: #111; color: #AAA; }

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Footer dark */
.footer-dark {
    background-color: #111;
    color: #999;
}
.footer-dark a {
    color: #CCC;
}
.footer-dark a:hover {
    color: #FFF;
}
.footer-dark .social-buttons .btn {
    color: #FFF;
}
.footer-dark .social-buttons .btn:hover {
    color: #CCC;
}

/* Footer logo */
#footer-logo {
    margin-bottom: 20px;
}
#footer-logo img {
    max-height: 50px;
}
.footer-dark #footer-logo .logo-dark,
.footer-dark #footer-logo .logo-dark-m {
    display: none;
}
.footer-dark #footer-logo .logo-light {
    display: block;
}
#footer-logo .logo-light-m,
#footer-logo .logo-dark-m {
    display: none;
}

@media (max-width: 767px) {
    #footer-logo .logo-light,
    #footer-logo .logo-dark {
        display: none;
    }
    .footer-dark #footer-logo .logo-light-m {
        display: block;
    }
}

/* Footer text */
.footer-text {
    margin-bottom: 20px;
}
.footer-text h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #FFF;
}

/* Footer bottom */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer menu */
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}
.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}
.footer-menu li a {
    font-size: 14px;
}

@media (max-width: 991px) {
    .footer-menu {
        text-align: left;
        margin-top: 20px;
    }
    .footer-menu li {
        margin-left: 0;
        margin-right: 20px;
    }
}

/* Footer copyright */
.footer-copyright {
    font-size: 13px;
}
.footer-copyright p {
    margin: 0;
}

/* ===== HELPER CLASSES ===== */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

.no-padding { padding: 0 !important; }
.no-padding-left { padding-left: 0 !important; }
.no-padding-right { padding-right: 0 !important; }

.no-margin-top { margin-top: 0 !important; }

/* Full height */
.full-height-vh {
    min-height: 100vh !important;
}

/* Row heights */
@media (min-width: 1200px) {
    .row-lg-height {
        display: table;
        table-layout: fixed;
        height: 100%;
        width: 100%;
        overflow: hidden;
    }
    .col-lg-height {
        display: table-cell;
        float: none;
        height: 100%;
    }
    .col-lg-middle {
        vertical-align: middle;
    }
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

