@font-face {
    font-family:AileronThin;
    src: url(/fonttype/aileron.thin.otf);
}
@font-face {
    font-family:AileronReg;
    src: url(/fonttype/aileron.regular.otf);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    min-height: 100%;
    background: white;
}

.center-fit{
    max-width: 100%;
    max-height: 100vh;
    margin: auto;
}
.text-middle{
    bottom: 0;
    text-align: center;
    color: white;
    background-color: black;
    font-size: 20px;
}
.no-color-url{
    color: white;
    text-decoration: none;
    cursor: pointer;
}


.container-fluid {
    background-color: #000000;
}

.logo-container{
    display: grid;
    place-items: center;
    padding-top: 3rem;
    grid-template-columns: repeat(2, 1fr);
}
.contact-img {
    width: 25%;
    border-radius: 1.5rem;
}
.ig-text-style{
    text-decoration: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 30px;
}
/* --- CONTACT PAGE REDESIGN --- */

.contact-page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 20px;
    gap: 4rem; /* Controls space between text and image */
    min-height: 80vh; /* Fills the screen vertically */
}

/* 1. Left Side: Text Info */
.contact-info-section {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-title {
    font-family: 'AileronThin', sans-serif;
    font-size: 4rem;
    margin-bottom: 3rem;
    color: #000;
    line-height: 1;
}

/* Individual Item Row */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

/* Icon Styling */
.icon-box {
    width: 40px;
    font-size: 24px;
    color: #000;
    margin-top: 2px; /* Align with top of text */
}

/* Text Content */
.text-box h3 {
    font-family: 'AileronReg', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #888; /* Subtle label color */
}

.text-box p {
    font-family: 'AileronReg', sans-serif;
    font-size: 18px; /* Larger, readable font */
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* 2. Right Side: Image */
.contact-image-section {
    flex: 1;
    height: 500px; /* Consistent height */
    max-width: 600px;
    position: relative;
}

.contact-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* 3. Instagram Button */
.contact-actions {
    margin-top: 1rem;
    padding-left: 40px; /* Align with text, not icon */
}

.contact-ig-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-family: 'AileronReg', sans-serif;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-ig-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* --- MOBILE RESPONSIVE --- */
@media screen and (max-width: 900px) {
    .contact-page-wrapper {
        flex-direction: column-reverse; /* Image on top, text below */
        padding: 2rem 20px;
        gap: 2rem;
        text-align: left;
    }

    .contact-image-section {
        width: 100%;
        height: 300px;
    }

    .page-title {
        font-size: 3rem;
    }
    
    .contact-actions {
        padding-left: 0;
    }
    
    .contact-ig-btn {
        width: 100%;
        justify-content: center;
    }
}
.contact_img img{
    padding-top: 40px;
    width: 100%;
    height: auto;
    
}
.contact-title{
    font-size: 40px;
}
.contact-info {
    margin-bottom: 0;
    padding-top: 11px;
}
.about_dbco_container{
    columns: 990px;
    align-items: center;
    padding-top: 20mm; 
}
.about_dbco_container img{
    width: 100%; 
}
.gotop {
    position: fixed;
    width: 40px;
    height: 40px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 0.5rem;
    background: rgba(131, 131, 131, 0.712);
    bottom: 120px;
    right: 50px;
    font-family: AileronReg;
    text-align: center;
    line-height: 40px; 
    color: white;
    font-size: 16px;
}

.copyright{
    display: flex;
    background-color: black;
    color: white;
    height: 100px;
    width: 100%;
    padding: 40px 0;
    justify-content: center;
}

@media only screen and (max-width:430px) {
    .about_dbco_container{
        columns: 990px;
        align-items: center;
        padding-top: 20mm; 
    }
    .about_dbco_container img {
        width: 100%;
    }
    .copyright{
        display: flex;
        background-color: black;
        color: white;
        height: 100px;
        width: 100%;
        padding: 40px 0;
        justify-content: center;
        font-size: 12px;
    }
    .gotop {
        width: 60px;
        height: 60px;
        right: 10px;
        line-height: 60px;
        font-size: 26px;
    }
}

/* --- STICKY FOOTER FIX --- */
.sticky-footer-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Forces body to be at least window height */
}

main {
    flex: 1; /* Pushes footer down if content is short */
    display: flex;
    flex-direction: column;
}
/* --- CUSTOM TOAST NOTIFICATION --- */
#toast-notification {
    visibility: hidden; /* Hidden by default */
    min-width: 250px;
    background-color: #333; /* Dark background */
    color: #fff; /* White text */
    text-align: center;
    border-radius: 8px; /* Rounded corners */
    padding: 16px;
    position: fixed;
    z-index: 10000; /* On top of everything */
    left: 50%;
    bottom: 30px; /* Start position */
    transform: translateX(-50%); /* Center horizontally */
    font-size: 16px;
    font-family: 'AileronReg', sans-serif;
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
}

/* Class to make it visible */
#toast-notification.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px; /* Moves up slightly when appearing */
}
/* --- QUOTE CART PAGE STYLES --- */

.cart-page-wrapper {
    width: 80%;
    margin: 0 auto;
    padding: 4rem 20px;
    font-family: 'AileronReg', sans-serif;
}

.cart-title {
    font-family: 'AileronThin', sans-serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
    letter-spacing: 2px;
}

/* Product List Styling */
.cart-list-container {
    border-top: 1px solid #eee;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    background-color: transparent;
    transition: background-color 0.3s;
}

.cart-item:hover {
    background-color: #fafafa;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 5px;
    border-radius: 4px;
    margin-right: 20px;
}

.cart-item-details h5 {
    font-family: 'AileronReg', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: #000;
}

.cart-item-details small {
    color: #666;
    font-family: 'AileronReg', sans-serif;
}

/* Remove Button */
.btn-remove {
    color: #999;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    color: white;
    background-color: #cc3300; /* Red on hover */
    border-color: #cc3300;
}

/* Form Container Styling */
.quote-form-box {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); /* Soft elegant shadow */
    position: sticky;
    top: 120px; /* Sticks to top when scrolling */
}

.quote-form-box h4 {
    font-family: 'AileronThin', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}

/* Input Fields */
.custom-input {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    padding: 10px 0;
    background: transparent;
    font-family: 'AileronReg', sans-serif;
    transition: border-color 0.3s;
}

.custom-input:focus {
    box-shadow: none;
    border-color: #000; /* Black line on focus */
    background: transparent;
}

.form-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

/* Submit Button */
.btn-submit-quote {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-family: 'AileronReg', sans-serif;
    border-radius: 4px;
    margin-top: 2rem;
    transition: transform 0.2s, background-color 0.3s;
}

.btn-submit-quote:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.btn-submit-quote:disabled {
    background-color: #777;
    cursor: not-allowed;
}