/* ========================================================================= */


/* PREMIUM 3D LUXURY CONTACT PAGE CSS                                        */


/* ========================================================================= */

body {
    background-color: #f8fafc;
    font-family: 'Roboto', sans-serif;
}


/* ----------------------------------------- */


/* HERO SECTION (MATCHING ABOUT & SERVICE)   */


/* ----------------------------------------- */

.hero-container-about {
    position: relative;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    background: #0f172a;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    z-index: 1;
}
    pointer-events: none;

.hero-container-about>*:not(img):not(.hero-background):not(::after) {
    position: relative;
    z-index: 10;
}

.hero-container-about::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
    z-index: 2;
}

.about-heading {
    z-index: 10;
    position: relative;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: auto;
    text-align: center;
    padding: 0 20px;
}

.about-heading h1 {
    font-family: inherit !important;
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 20px 0 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-heading div, .hero-container-about .breadcrumb-nav {
    display: inline-flex; flex-wrap: wrap; justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-heading div a.about-tag-a {
    color: #fcb85e;
    text-decoration: none;
    font-weight: 700;
}

.about-heading div span a.first-home {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.about-heading div span a.first-home:hover {
    color: #fcb85e;
}


/* ----------------------------------------- */


/* HEADQUARTERS / CONTACT INFO               */


/* ----------------------------------------- */

.contact-head-sec {
    padding: 40px 5%;
    background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
}

.contact-head-sec h3 {
    font-family: inherit !important;
    font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    line-height: 1.25 !important;
    letter-spacing: -0.02em !important;
    text-align: center;
    margin-bottom: 50px;
}

.contact-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    justify-content: space-between;
    gap: 30px;
}

.contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 31%;
    background: #ffffff;
    border: 1px solid #ffe8d6;
    border-radius: 24px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 0 rgba(228, 93, 37, 0.1), 0 15px 30px rgba(0, 0, 0, 0.05);
}

.contact-box:hover {
    transform: translateY(-6px);
    border-color: #f97316;
    box-shadow: 0 8px 0 #ea580c, 0 25px 40px rgba(234, 88, 12, 0.15);
}

.contact-box a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.contact-box img {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    padding: 12px;
    background: #fffaf5;
    border-radius: 16px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease;
}

.contact-box:hover img {
    transform: scale(1.1) rotate(5deg);
    background: #fff3e0;
}

.contact-box h3 {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 0 10px 0 !important;
}

.contact-box p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}


/* ----------------------------------------- */


/* FORM SECTION                              */


/* ----------------------------------------- */

.contct-form-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 5%;
    max-width: 1300px;
    margin: 0 auto 60px;
}


/* Dark Premium Form Box */

.contct-form-box {
    width: 100%;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.contct-form-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 130, 32, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.contct-form-box .form-control,
.contct-form-box .form-select {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
    color: #ffffff;
    padding: 14px 20px;
    font-size: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contct-form-box .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contct-form-box select {
    color: rgba(255, 255, 255, 0.5);
}

.contct-form-box select option {
    color: #0f172a;
}

.contct-form-box .form-control:focus,
.contct-form-box .form-select:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #ea580c !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 4px rgba(234, 88, 12, 0.2) !important;
    outline: none;
}

#submit-contact-btn {
    padding: 14px 40px;
    background: linear-gradient(135deg, #f58220 0%, #e45d25 50%, #c8550a 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 0 #943306, 0 10px 20px rgba(200, 85, 10, 0.3);
    margin-top: 10px;
}

#submit-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #943306, 0 15px 30px rgba(200, 85, 10, 0.4);
}

#submit-contact-btn:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #943306, 0 5px 10px rgba(200, 85, 10, 0.3);
}


/* Quote Sidebar */

.contact-quote {
    width: 35%;
    background: linear-gradient(135deg, #f58220 0%, #e45d25 50%, #c8550a 100%);
    border-radius: 24px;
    padding: 50px 40px;
    color: #ffffff;
    box-shadow: 10px 10px 0 rgba(228, 93, 37, 0.15), 0 20px 40px rgba(200, 85, 10, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-quote h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.contact-quote p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-quote h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    margin-top: auto;
}

.contact-quote .social-icons a {
    display: inline-flex; flex-wrap: wrap; justify-content: center;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.contact-quote .social-icons a:hover {
    background: #ffffff;
    color: #c8550a;
    transform: translateY(-3px);
}


/* ----------------------------------------- */


/* LOCATION BRANCH MAP                       */


/* ----------------------------------------- */

#branch-heading {
    padding: 0 5%;
    margin-top: 60px;
    margin-bottom: 40px;
    font-family: inherit !important;
    font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    text-align: center;
}

.branch-map {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.branch-map .branch-box {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.branch-box-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    border: 1px solid #ffe8d6;
    border-radius: 16px;
    background: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.branch-box-item:hover {
    transform: translateX(5px);
    border-color: #f97316;
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.1);
}

.branch-box-item.active {
    background: linear-gradient(135deg, #f58220 0%, #e45d25 100%);
    color: #ffffff;
    border-color: #ea580c;
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.2);
}

.branch-box-item .branch-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 16px;
}

.branch-box-item .branch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.branch-name {
    display: flex;
    flex-direction: column;
}

.branch-name h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: inherit;
}

.branch-box-item:not(.active) .branch-name h4 {
    color: #0f172a;
}

.branch-name p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.branch-box-item:not(.active) .branch-name p {
    color: #64748b;
}

.map-container {
    width: 66%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 0 #cbd5e1, 0 20px 40px rgba(0, 0, 0, 0.08);
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}


/* ----------------------------------------- */


/* CONTACT THOUGHT BOTTOM BANNER             */


/* ----------------------------------------- */

.contact-thought {
    padding: 40px 5%;
    margin-top: 40px;
    background: linear-gradient(135deg, #f58220 0%, #c8550a 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-thought::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/noise.png');
    opacity: 0.05;
    pointer-events: none;
}

.contact-thought div {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.contact-thought .contact-action-btn {
    display: inline-flex; flex-wrap: wrap; justify-content: center;
    align-items: center;
    gap: 12px;
    color: #c8550a !important;
    background-color: #ffffff !important;
    padding: 18px 45px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 1.15rem !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 6px 0 #ffe0cc, 0 15px 30px rgba(0, 0, 0, 0.15) !important;
    position: relative;
    z-index: 2;
    border: none !important;
    letter-spacing: 0.5px;
}

.contact-thought .contact-action-btn i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.contact-thought .contact-action-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 0 #ffe0cc, 0 25px 40px rgba(0, 0, 0, 0.2) !important;
    color: #e45d25 !important;
}

.contact-thought .contact-action-btn:hover i {
    transform: translateX(6px);
}

.contact-thought .contact-action-btn:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #ffe0cc, 0 5px 10px rgba(0, 0, 0, 0.15) !important;
}


/* ----------------------------------------- */


/* RESPONSIVE DESIGN                         */


/* ----------------------------------------- */

@media screen and (max-width: 1024px) {
    .contct-form-box {
        width: 55%;
    }
    .contact-quote {
        width: 40%;
    }
    .branch-map .branch-box {
        width: 35%;
    }
    .map-container {
        width: 60%;
    }
}

@media screen and (max-width: 768px) {
    .hero-container-about {
        min-height: 340px;
    }
    .contact-container {
        flex-direction: column;
    }
    .contact-box {
        width: 100%;
    }
    .contct-form-container {
        flex-direction: column;
        padding: 40px 5%;
    }
    .contct-form-box {
        width: 100%;
        padding: 30px 20px;
    }
    .contact-quote {
        width: 100%;
        padding: 40px 30px;
    }
    .branch-map {
        flex-direction: column;
    }
    .branch-map .branch-box {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .branch-box-item {
        min-width: 280px;
        flex-shrink: 0;
    }
    .map-container {
        width: 100%;
        height: 350px;
    }
    .contact-thought {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media screen and (max-width: 480px) {
    .about-heading h1 {
        font-size: 2.5rem !important;
    }
}

.contact-quote img {
    max-width: 100%;
    border-radius: 12px;
    margin: 15px 0;
}

.contact-quote>a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

/* Breadcrumb Mobile Wrap Fix */
@media (max-width: 768px) {
    .about-heading div, .hero-container-about .breadcrumb-nav {
        font-size: 0.75rem !important; /* Smaller font to fit long text */
        padding: 6px 16px !important;
        gap: 4px !important;
        border-radius: 20px !important; /* Ensure it looks like a soft pill even if wrapped */
        line-height: 1.5 !important;
        max-width: 95% !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .about-heading {
        margin: auto !important; /* Override that weird margin: 88px 40px in some files */
        padding: 20px 10px !important;
    }
}



