/*******************************************************/
/******************** ## Main Header *******************/
/*******************************************************/
.logo{
    width:200px;
    height: 100px;;
}


.break{
    height:10px;
}

/* ================= FAQ COLOR OVERRIDES ONLY ================= */

/* Section background */
.faq-area {
  background-color: #ffffff !important;
}

/* Headings */
.faq-area h2,
.faq-area .section-title h2 {
  color: #000000 !important;
}

/* FAQ questions */
.faq-area .accordion-button {
  color: #000000 !important;
  background-color: #ffffff !important;
}

/* Active question (opened) */
.faq-area .accordion-button:not(.collapsed) {
  color: #000000 !important;
  background-color: #ffffff !important;
}

/* FAQ answer text */
.faq-area .accordion-body {
  color: #000000 !important;
  background-color: #ffffff !important;
}

/* Category text (FAQ label) */
.faq-area .category-line,
.faq-area .section-title p {
  color: #000000 !important;
}

/* Accordion borders (soft light grey) */
.faq-area .accordion-item {
  border-color: #e0e0e0 !important;
}

/* Arrow icon color (Bootstrap default uses filter) */
.faq-area .accordion-button::after {
  filter: brightness(0) !important;
}


/*******************************************************/
/******************* ## project details ****************/
/*******************************************************/

/* Force black text inside project-details section */
.project-details.white-bg,
.project-details.white-bg * {
    color: #000000 !important;
}

/* Keep icons properly styled */
.project-details.white-bg i {
    color: #F31515 !important; /* optional: keeps check icons red */
}

/* Headings slightly stronger */
.project-details.white-bg h4 {
    color: #000000 !important;
    font-weight: 600;
}

/* Paragraph & list text */
.project-details.white-bg p,
.project-details.white-bg li {
    color: #000000 !important;
}


/*******************************************************/
/*********************** ## Footer *********************/
/*******************************************************/

/* ================= CLASSIC GYPSUM FIX ================= */

/* CLASSIC text */
.classic-gypsum .classic-text {
    font-size: 120px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #F31515;
    margin: 0 18px 0 0;
    line-height: 1;
}

/* GYPSUM text */
.classic-gypsum .gypsum-text {
    font-size: 120px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1;
}

/* Align logo with Address (top) */
.classic-gypsum {
    display: flex;
    align-items: flex-start;
    margin-top: 0;
    align-self: flex-start;
}

/* Ensure footer top row aligns properly */
.footer-top .row.mt-32 {
    align-items: flex-start;
}

/* ================= FOOTER BOTTOM ================= */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* KEY FIX */
    gap: 32px;
    padding: 64px 64px; /* reduced vertical gap */
    position: relative;
}

/* Dark overlay */
.footer-bottom::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

.footer-bottom > * {
    position: relative;
    z-index: 1;
}

/* Footer columns */
.footer-widget {
    width: 22%;
    display: flex;
    flex-direction: column;
}

/* Map column */
.map-widget {
    width: 34%;
    display: flex;
    flex-direction: column;
}

/* ================= MAP FIX ================= */

.map-widget h5 {
    margin-bottom: 12px; /* reduce gap above map */
}

.map-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    flex: 1; /* stretch to match column height */
}


.map-box::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 36px;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0),
        rgba(0,0,0,0.6)
    );
    pointer-events: none;
}

.map-box iframe {
    width: 100%;
    height: 100%; /* MATCH COLUMN HEIGHT */
    border: 0;
    filter: grayscale(20%) contrast(1.05);
}

/* ================= SOCIAL ICONS ================= */

.social-links ul {
    display: flex;
    gap: 16px;
    margin: 12px 0 0;
    padding: 0;
}

.social-links ul li {
    list-style: none;
}

.social-links ul li a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    font-size: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-links ul li a:hover {
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ================= LISTS ================= */

.links li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.links li:last-child {
    border-bottom: none;
}

.links li i {
    margin-right: 10px;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

/* ================= CONTACT INFO ================= */

.f-c-info {
    font-size: 12px;
}

.f-c-info a,
.f-c-info b {
    font-size: 12px;
}

.f-c-info p {
    margin-bottom: 10px;
    line-height: 1.55;
}

.f-c-info p:first-child {
    max-width: 340px;
}

/* Call inline grid */
.f-c-info p:nth-child(2) {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 6px;
    align-items: start;
}

.f-c-info p:nth-child(2) b {
    white-space: nowrap;
}

.f-c-info p:nth-child(2) a:last-of-type {
    margin-top: 4px;
}

.f-c-info a {
    color: #ffffff;
    opacity: 0.9;
    text-decoration: none;
}

.f-c-info a:hover {
    opacity: 1;
    color: #e53935;
}
