/* ===== ROOT VARIABLES ===== */
:root {
    --gold: #D4AF37;
    --dark-bg: rgba(0, 40, 80, 0.6);
    --black: #000;
    --white: #fff;
}

/* ===== GLOBAL ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    font-family: 'Poppins', sans-serif;
    padding-top: 110px; 
}

/* ===== NAVBAR ===== */
.all {
    background-color: rgba(0, 30, 90, 0.7); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    width: 190px; 
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.navbar {
    display: flex;
    align-items: center;
}

.navbar a {
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.navbar a:hover {
    background-color: rgba(0, 10, 30, 0.8); 
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ===== DROPDOWN ===== */
.dropdown {
    position: relative;
}

.dropdown .dropbtn {
    border: none;
    outline: none;
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 18px;
    background-color: inherit;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 30, 90, 0.9); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 160px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-content a {
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    display: block;
    text-align: left;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(0, 10, 30, 0.9); 
    color: #ffffff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.parallax-3 {
    margin-top: 0; 
    padding-top: 140px; 
    background-image: url(../services-img/commercial-view-1.png);
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ===== Gallery interior ===== */
.interior-gallery {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}

.column-interior {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.column-interior img {
    padding-top: 14px;
    padding-bottom: 14px;
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
    border-radius: 36px;
}

@media screen and (max-width: 800px) {
    .column-interior {
        flex: 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 600px) {
    .column-interior {
        flex: 100%;
        max-width: 100%;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(0, 30, 90, 1);
    color: #FFF8E7;
    padding: 60px 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* This pushes the two columns apart */
    align-items: flex-end;         /* Aligns both columns to the bottom */
    gap: 40px;
    border-top: 4px solid #D4AF37;
    border-radius: 20px 20px 0 0;
}

.footer-section {
    flex: 1;
    min-width: 300px;
}

.footer h3 { 
    margin-bottom: 20px;
    color: #D4AF37; 
    font-family: "Playfair Display SC", serif;
    font-size: 24px;
}

.footer p { 
    margin: 5px 0; 
    font-size: 16px; 
    line-height: 1.6;
    font-family: "Playfair Display", serif;
}

/* --- CONTACT INFO --- */
.contact-info {
    margin: 25px 0 15px 0; 
    text-align: left;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info strong {
    color: #D4AF37;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-right: 10px;
}

.contact-info a {
    color: #FFF8E7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #D4AF37;
}

/* --- THE FREE QUOTE BUTTON (Cleaned Up) --- */
.footer-quote-btn {
    display: inline-block;        
    background-color: #D4AF37;    
    color: #001E5A;               
    padding: 14px 30px;
    text-decoration: none;
    font-family: "Playfair Display SC", serif;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 10px 0 25px 0; /* Space above and below button */
    text-align: center;
}

.footer-quote-btn:hover {
    background-color: #FFF8E7;    
    transform: translateY(-3px);  
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4); 
}

/* --- SOCIAL ICONS --- */
.footer-section-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Pushes content to the right */
    text-align: right;
    min-width: 200px;
}

.footer-section-social h4 {
    color: #D4AF37;
    font-family: "Playfair Display SC", serif;
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: flex-end; /* Keeps icons on the right */
}

.social-icons a {
    color: #FFF8E7;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #D4AF37;
    transform: translateY(-3px);
}

/* --- BOTTOM BAR --- */
.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 13px;
    border-top: 1px solid rgba(212, 175, 55, 0.2); 
    color: rgba(255, 248, 231, 0.6);
}

/* MOBILE & RESPONSIVE FIXES */

@media (max-width: 768px) {
    .footer {
        justify-content: center;
        text-align: center;
    }
    .footer-section-social {
        align-items: center; /* Centers social icons on phones */
        text-align: center;
        width: 100%;
    }
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .parallax-3 {
        min-height: 450px; 
        background-attachment: scroll; 
    }

    .all {
        flex-direction: column;
        padding: 15px 10px;
    }

    .logo {
        width: 140px; 
        margin-bottom: 10px;
    }

    .navbar {
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar a, .dropdown .dropbtn {
        padding: 8px 12px;
        font-size: 14px;
    }

    body {
        padding-top: 160px; 
    }

    .boxes {
        flex: 1 1 calc(50% - 12px);
    }
}

@media (max-width: 500px) {
    .boxes {
        flex: 1 1 100%;
    }
    .footer {
        text-align: center;
    }
}