/* ==========================================================================
   Bird Nest Designs - Master Stylesheet
   ========================================================================== */

/* --- Color Palette & Base Variables --- */
:root {
    --brand-orange: #fea401;
    --brand-dark: #101010;
    --brand-gray: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    overflow-x: hidden;
}

.orange-text {
    color: var(--brand-orange) !important;
}

/* --- STICKY HEADER STYLING --- */
.sticky-header-container {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.12);
}

/* Top Contact Header Bar */
.top-header {
    background-color: var(--brand-dark);
    padding: 6px 20px;
    font-size: 13px;
    border-bottom: 2px solid var(--brand-orange);
}

.top-header a {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.top-header a:hover {
    color: var(--brand-orange) !important;
}

/* Top Social Circular Buttons */
.top-social a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: var(--brand-orange) !important;
    color: var(--brand-dark) !important;
    border-radius: 50%;
    text-decoration: none !important;
    font-size: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.top-social a:hover {
    transform: scale(1.1);
    background-color: #ffffff !important;
    color: var(--brand-dark) !important;
}

/* --- LOGO & BRANDING STYLING --- */
.nav-wrapper {
    background: #ffffff;
    padding: 10px 0;
}

.logo-side a {
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
}

/* Strict height constraints for header logo */
.site-logo,
.logo-side img {
    height: 48px !important;
    max-height: 48px !important;
    width: auto !important;
    max-width: 60px !important;
    object-fit: contain !important;
}

/* Company Name next to header logo */
.brand-title,
.logo-side .brand-title {
    color: var(--brand-orange) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    white-space: nowrap !important;
    margin-left: 10px !important;
    font-family: 'Poppins', sans-serif !important;
    text-decoration: none !important;
}

/* --- MAIN NAVIGATION MENU --- */
.finaedge-main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.finaedge-main-menu li {
    margin-left: 20px;
}

.finaedge-main-menu a {
    color: #101010 !important;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.finaedge-main-menu a:hover,
.finaedge-main-menu a.active {
    color: var(--brand-orange) !important;
}

.btn-quote {
    background: var(--brand-orange) !important;
    color: #ffffff !important;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    display: inline-block;
    transition: background-color 0.3s ease;
    text-decoration: none !important;
}

.btn-quote:hover {
    background: var(--brand-dark) !important;
    color: #ffffff !important;
}

/* --- HERO SECTION --- */
.hero-img {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
}

/* --- FORM CARD STYLING --- */
.form-card {
    background-color: var(--brand-orange);
    border-radius: 10px;
}

.form-card label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.form-card input, 
.form-card select {
    border-radius: 5px;
    border: 1px solid #ffffff;
    font-size: 14px;
    height: 42px;
    background-color: #ffffff;
}

.form-card input:focus, 
.form-card select:focus {
    border-color: var(--brand-dark);
    box-shadow: none;
}

/* --- BUTTONS --- */
.action-button {
    background-color: var(--brand-orange) !important;
    color: #ffffff !important;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    border: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none !important;
}

.action-button:hover {
    background-color: var(--brand-dark) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* --- SERVICE CARDS --- */
.service-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* --- LISTS --- */
.about-list {
    list-style: none;
    padding-left: 1.2rem;
}

.about-list li {
    position: relative;
    margin-bottom: 6px;
}

.about-list li::before {
    content: "•";
    color: var(--brand-orange);
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* --- PROJECT TABS --- */
.orange-pill {
    background-color: transparent;
    color: #333333 !important;
    border-radius: 20px;
    font-weight: 600;
    padding: 8px 25px;
    text-decoration: none !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.orange-pill.active,
.orange-pill:hover {
    background-color: var(--brand-orange) !important;
    color: #ffffff !important;
}

/* --- REVIEW SECTION --- */
.review-bg-band {
    background-color: var(--brand-orange);
}

.quote-mark {
    color: var(--brand-orange);
}

/* --- BLOG CARDS & DATE BADGE --- */
.blog-card {
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-date-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--brand-orange);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.blog-date-badge .day {
    font-size: 18px;
}

.blog-date-badge .month {
    font-size: 11px;
    text-transform: uppercase;
}

/* ==========================================================================
   FOOTER STYLING (REIFIED OVERRIDES)
   ========================================================================== */
.footer {
    background-color: var(--brand-dark) !important;
    color: #ffffff !important;
}

.footer-logo {
    height: 48px !important;
    max-height: 48px !important;
    width: auto !important;
    object-fit: contain !important;
}

.footer-brand-title {
    color: var(--brand-orange) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif !important;
    text-decoration: none !important;
}

.footer-contact-info,
.footer-contact-info a {
    color: var(--brand-orange) !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
}

.footer-contact-info a:hover {
    text-decoration: underline !important;
}

.footer-address {
    color: #aaaaaa !important;
    font-size: 14px;
    line-height: 1.6;
}

/* White Outline Pill Buttons */
.btn-footer-outline,
a.btn-footer-outline {
    border: 1px solid #ffffff !important;
    color: #ffffff !important;
    background: transparent !important;
    border-radius: 30px !important;
    padding: 8px 26px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-footer-outline:hover,
a.btn-footer-outline:hover {
    background: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    color: #ffffff !important;
}

/* Footer Navigation Links */
.footer-nav .nav-links a {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.footer-nav .nav-links a:hover {
    color: var(--brand-orange) !important;
}

/* Center Social Divider Bar */
.footer-social-divider {
    max-width: 90%;
    margin: 25px auto;
}

.footer-social-divider .divider-line {
    height: 1px;
    background-color: #333333;
}

.social-footer-icons a {
    color: #ffffff !important;
    font-size: 18px;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.social-footer-icons a:hover {
    color: var(--brand-orange) !important;
}

.footer-copyright {
    padding-top: 10px;
}

.footer-copyright a {
    text-decoration: none !important;
}

.footer-copyright a:hover {
    text-decoration: underline !important;
}

/* --- FLOATING WHATSAPP WIDGET --- */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #ffffff !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}