:root {
    --cream: #fbefd9;
    --golden: #dba520;
    --brown: #3d2d21;
    --white: #ffffff;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--cream);
    color: var(--brown);
    margin: 0;
    padding: 0;
}

h1,
h2,
h3 {
    color: var(--golden);
}

p {
    line-height: 1.6;
    margin: 0 0 1em;
}

a {
    color: var(--golden);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

a:hover {
    text-decoration: underline;
}

header {
    background-color: var(--brown);
    color: var(--white);
    padding: 1em;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

footer {
    background-color: var(--brown);
    color: var(--white);
    text-align: center;
    padding: 1em;
    width: 100%;
    bottom: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
}

nav {
    background-color: var(--white);
    padding: 1em;
    text-align: center;
}

nav a {
    margin: 0 15px;
    color: var(--brown);
}

nav a:hover {
    color: var(--white);
}
.cta-button {
    background-color: var(--golden) !important;
    color: var(--brown);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.site-footer {
    background-color: var(--brown);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom {
    background-color: var(--brown);
    color: var(--white);
    display: flex;
    justify-content: space-around;
    align-items: center;

    p {
        padding: 2px 0 !important;
        margin-top: 10px !important;
    }

    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--golden);
    text-align: center;
}

address p {
    font-size: 13px;

}

.footer-section a:hover {
    color: var(--golden);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--golden);
    text-align: center;
}



.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.logo {
    max-width: 150px;
    height: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--brown);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a.active {
    color: var(--golden);
    font-weight: bold;
    border-bottom: 2px solid var(--golden);
    padding-bottom: 3px;
}
.nav-menu a:hover {
    color: var(--golden);
}

.hamburger {
    display: none;
    cursor: pointer;
    color: #3d2d21;
    border: #dba520 2px solid;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        text-align: center;
        position: absolute;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        display: flex;
    }
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.header-top {
    background-color: var(--brown);
    color: var(--white);
    padding: 0.5rem 0;
    display: flex;
    flex-direction: row;

}

.header-top .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.header-top .contact-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.header-top .social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.header-top .btn-quote {
    background-color: var(--golden);
    color: var(--brown);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.logo-container {
    flex: 0 0 auto;
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .logo-container {
        z-index: 2;
    }

    .hamburger {
        z-index: 2;
    }

    .header-top .container,
    .contact-info {
        background-color: var(--brown);
        color: var(--white);
        padding: 0.5rem 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

    }
}

.welcome-section {
    background-color: var(--white);
    border-bottom: 1px solid var(--golden);
    padding: 4rem 0;
}

.welcome-section h2 {
    color: var(--brown);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.welcome-section .lead {
    color: var(--golden);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.welcome-section img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 16px rgba(61, 45, 33, 0.08);
    border-radius: 15px;
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 2rem 0;
    }
    .welcome-section h2 {
        font-size: 2rem;
    }
    .welcome-section .lead {
        font-size: 1.05rem;
    }
}

.services-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.services-section .card {
    margin-bottom: 2rem;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: var(--cream);
    max-height: min-content;
}

.services-section .card:hover {
    transform: translateY(-10px);
}

.services-section .card-img-top {
    height: 200px;
    object-fit: cover;
}

.services-section .card-body {
    padding: 1.5rem;
}

.services-section .card-body a{
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.services-section .card-title {
    color: var(--brown);
    margin-bottom: 1rem;
}

.services-section .btn-primary {
    background-color: var(--brown);
    border-color: var(--brown);
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.services-section .btn-primary:hover {
    background-color: var(--golden);
    border-color: var(--golden);
}

@media (max-width: 768px) {
    .services-section .card {
        margin-bottom: 1.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }
}

.how-we-shift-section {
    background-color: var(--cream);
    padding: 4rem 0;
}

.how-we-shift-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--brown);
    font-weight: 600;
}

.how-we-shift-section img {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: auto;
    max-width: 300px;
    height: auto;

}

.how-we-shift-section img:hover {
    transform: scale(1.02);
}

.how-we-shift-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.how-we-shift-section ul {
    list-style: none;
    padding-left: 0;
}

.how-we-shift-section ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--brown);
}

.how-we-shift-section ul li:before {
    content: "✓";
    color: var(--golden);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .how-we-shift-section h2 {
        font-size: 2rem;
    }
}

.testimonials-section {
    background-color: var(--white);
    padding: 4rem 0;
}

.testimonial-card {
    background-color: var(--cream);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--brown);
}

.testimonial-card h5 {
    color: var(--golden);
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .testimonials-section .row {
        display: flex;
        flex-direction: column;
    }
    
    .testimonial-card {
        margin: 1rem 0;
    }
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--brown);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--golden);
    text-decoration: none;
}

.overlay-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column-reverse;
    align-items: end;
    gap: 10px;
    z-index: 1000;
}

.overlay-icon {
    width: 50px;
    height: 50px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    transition: 
        transform 0.1s ease,
        width 0.3s cubic-bezier(0.4,0,0.2,1),
        background-color 0.3s,
        color 0.3s;
    overflow: hidden;
    cursor: pointer;
    animation: overlay-icon-attention 1.2s infinite alternate;
}

@keyframes overlay-icon-attention {
    0% {
        box-shadow: 0 0 0 0 rgba(219, 165, 32, 0.5);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(219, 165, 32, 0.15);
        transform: scale(1.08);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(219, 165, 32, 0.5);
        transform: scale(1);
    }
}

.overlay-icon span {
    display: none;
    color: var(--white);
    font-size: 16px;
    text-overflow: ellipsis;
    opacity: 0;
    white-space: nowrap;
    margin-left: 0;
    transition: opacity 0.3s, margin-left 0.3s, font-size 0.3s;
}
.overlay-icon:hover span,
.overlay-icon:focus span {
    display: inline-block;
    margin-left: 10px;
    font-size: 13px;
    font-weight: 600;
    opacity: 1;
}
.overlay-icon:hover,
.overlay-icon:focus {
    width: 150px;
    animation: none;
}

.overlay-icon:active {
    transform: scale(0.96);
}

@media (max-width: 768px) {
    .overlay-icons {
        right: 10px;
    }

    .overlay-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .overlay-icon:hover {
        transform: scale(1.05);
    }
    .back-to-top {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
    }
}


.call-icon {
    background-color: var(--golden);
}

.whatsapp-icon {
    background-color: #25D366;
}

.overlay-icon:hover {
    transform: scale(1.1);
    text-decoration: none;
    color: var(--white);
}

@media screen and (max-width: 768px) {
    .overlay-icons {
        right: 10px;
    }

    .overlay-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .overlay-icon:hover {
        transform: scale(1.05);
    }
    .back-to-top {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
    }
    
}

.about-hero-section {
    background-color: var(--white);
    padding: 6rem 0;
    margin-bottom: 3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-hero-section h1 {
    color: var(--brown);
    margin-bottom: 2rem;
}

.about-hero-section .lead {
    color: var(--golden);
    font-size: 1.5rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 3rem 0;
    }
    
    .about-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-section .lead {
        font-size: 1.2rem;
    }
}

.company-overview {
    background-color: var(--cream);
    padding: 4rem 0;
}

.company-overview h2 {
    color: var(--brown);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.company-overview p {
    color: var(--brown);
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .company-overview {
        padding: 2rem 0;
    }
    
    .company-overview h2 {
        font-size: 1.8rem;
    }
}


.why-choose-us {
    background-color: var(--white);
    padding: 4rem 0;
}

.why-choose-us h2 {
    color: var(--brown);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}
i.text-primary {
    color: var(--golden);
}

.why-choose-us .fa-3x {
    color: var(--golden);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.why-choose-us .col-md-4:hover .fa-3x {
    transform: scale(1.1);
}

.why-choose-us h3 {
    color: var(--brown);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.why-choose-us p {
    color: var(--brown);
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-choose-us h2 {
        font-size: 2rem;
    }
    
    .why-choose-us .col-md-4 {
        margin-bottom: 2rem;
    }
}

.gallery-section {
    background-color: var(--white);
    padding: 1rem 0;
}

.gallery-section .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: var(--cream);
    height: 100%;
}

.gallery-section .card:hover {
    transform: translateY(-5px);
}

.gallery-section .card-img-top {
    height: 200px;
    object-fit: cover;
}

.gallery-section .card-title {
    color: var(--brown);
    margin-bottom: 1rem;
}

.gallery-section .btn-primary {
    background-color: var(--brown);
    border-color: var(--brown);
    transition: all 0.3s ease;
}

.gallery-section .btn-primary:hover {
    background-color: var(--golden);
    border-color: var(--golden);
}

@media (max-width: 768px) {
    .gallery-section .card {
        margin-bottom: 1.5rem;
    }
}


.map-section {
    width: 80%;
    overflow: hidden;
    border-radius: 30px;
    margin: 0 auto;
}

.contact-hero-section {
    background-color: var(--white);
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.contact-hero-section h1 {
    color: var(--brown);
}

.contact-hero-section .lead {
    color: var(--golden);
}

.contact-form-section {
    background-color: var(--cream);
    padding: 3rem 0;
}
.contact-form-section button{
    background-color: var(--brown);
    border-color: var(--brown);
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0.2rem rgba(219, 165, 32, 0.25);
    color: var(--white);
    padding: 0.8rem 1.5rem;
}

.contact-form-section button:hover{
    background-color: var(--golden);
    border-color: var(--golden);
}

.contact-form-section h2 {
    color: var(--brown);
}

.form-control {
    border: 1px solid var(--brown);
    padding: 0.8rem;
}

.form-control:focus {
    border-color: var(--golden);
    box-shadow: 0 0 0 0.2rem rgba(219, 165, 32, 0.25);
}

.form-label {
    color: var(--brown);
    font-weight: 500;
}

.get-quote-section {
    background-color: var(--white);
}

.get-quote-section h2 {
    color: var(--brown);
}

.get-quote-section a {
    color: var(--golden);
    font-weight: 600;
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 2rem 0;
    }
    
    .contact-form-section {
        padding: 2rem 0;
    }
}

.faq-section {
    background-color: var(--white);
    padding: 4rem 0;
}

.accordion-item {
    border: 1px solid var(--brown);
    margin-bottom: 1rem;
}

.accordion-button {
    background-color: var(--cream);
    color: var(--brown);
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: var(--golden);
    color: var(--white);
}

.accordion-button:focus {
    border-color: var(--golden);
    box-shadow: 0 0 0 0.2rem rgba(219, 165, 32, 0.25);
}

.accordion-body {
    background-color: var(--white);
    color: var(--brown);
    padding: 1.25rem;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 0;
    }
}

.breadcrumb {
    padding: 1rem 0;
    margin: 0;
}

.bg-light {
    background-color: var(--white) !important;
    border-bottom: 1px solid var(--golden);
}
.bg-cream {
    background-color: var(--cream) !important;
    border-bottom: 1px solid var(--brown);
}

.breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--brown);
}
.breadcrumb-item a {
    color: var(--brown);
}

.breadcrumb-item a:hover {
    color: var(--golden);
}

.breadcrumb-item.active {
    color: var(--golden);
}

.why-choose-us-section {
    background-color: var(--white);
    padding: 4rem 0;
}

.why-choose-us-section h2 {
    color: var(--brown);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.why-choose-us-section .text-brown {
    color: var(--brown) !important;
}

.why-choose-us-section .list-group {
    background: none;
    border: none;
}

.why-choose-us-section .list-group-item {
    background: none;
    border: none;
    color: var(--brown);
    font-size: 1.15rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--golden);
    transition: background 0.2s;
}

.why-choose-us-section .list-group-item:last-child {
    border-bottom: none;
}
.text-secondary  {
    color: var(--golden) !important;
    font-weight: 600;
}

.why-choose-us-section .fw-bold {
    color: var(--golden) !important;
    font-weight: 600 !important;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 2rem 0;
    }
    .why-choose-us-section h2 {
        font-size: 2rem;
    }
    .why-choose-us-section .list-group-item {
        font-size: 1rem;
        padding: 1rem 0;
    }
}

.clients-section {
    background-color: var(--white);
    padding: 4rem 0;
}

.clients-section h2 {
    color: var(--brown);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.client-logos {
    gap: 2.5rem;
    align-items: center;
}

.client-logo {
    max-width: 140px;
    max-height: 120px;
    margin: 1rem;
    object-fit: contain;
    opacity: 0.8;
    transition: filter 0.3s, opacity 0.3s, transform 0.3s;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.07);
}

@media (max-width: 768px) {
    .clients-section {
        padding: 2rem 0;
    }
    .client-logos {
        gap: 1rem;
    }
    .client-logo {
        max-width: 90px;
        max-height: 50px;
        margin: 0.5rem;
    }
}