@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/* Brand Colors - Refined for Architectural Premium Look */
:root {
    --primary-color: #B89655;    /* Muted Brass/Gold for a high-end touch */
    --primary-hover: #967A44;    /* Deeper Gold for interaction */
    --secondary-color: #4A4E69;  /* Slate Grey for professional stability */
    --background-light: #f6f6f6; /* #FBFBFA Architectural Off-White (Warmer than pure white) */
    --text-dark: #2D2D2D;       /* Deep Charcoal for better readability */
    --surface-white: #FFFFFF;
}

body {
    font-family: 'Jost', sans-serif;
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
}

.cbg1 {
    /*    background-image: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?auto=format&fit=crop&w=1470&q=80');*/
    background-image: url("/resources/img/background/Crafting Timeless Spaces.png");
}

.cbg2 {
    background-image: url("/resources/img/background/Innovative Architectural Solutions.png");
}

.cbg3 {
    background-image: url("/resources/img/background/elegant interior designs.png");
    }

.jost-1 {
           font-family: "Jost", sans-serif;
           font-optical-sizing: auto;
           font-weight: 200;
           font-style: normal;
       }


.work {
    font-weight: 600;
    font-size: 2rem;
    color: var(--secondary-color); /* Solid Deep Slate */
    font-family: 'Jost', sans-serif;
    letter-spacing: 1px;
}

.press {
    font-weight: 400; /* Lighter weight for "Press" creates a modern look */
    font-size: 2rem;
    color: var(--primary-color); /* Use the Brass/Gold here */
    font-family: 'Jost', sans-serif;
    letter-spacing: 1px;
}

.navTitle{
    font-family: 'Jost', sans-serif;
    color: var(--text-dark);
    font-size: larger;
}

/* Navbar */
.navbar {
    background-color: var(--surface-white);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--text-dark) !important;
    display: flex;
    align-items: center;
   /* gap: 10px;*/
}

.navbar-brand img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary-color) !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* Section Titles */
section h2 {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 8px;
}

/* Section Headings - Thinner line for elegance */
section h2::after {
    content: '';
    width: 40px;
    height: 2px; /* Thinner is more elegant */
    background-color: var(--primary-color);
    margin: 12px 0 24px 0;
}

/* About Us */
#about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
}

/* Services */
.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.service-item:hover .service-icon {
    color: var(--primary-hover);
}

.service-item {
    padding: 20px;
    box-shadow: 0 8px 25px rgb(0 0 0 / 0.05);
    cursor: pointer;
    background-color: var(--surface-white);
    border: 1px solid #EDEDED; /* Subtle border for structure */
    border-radius: 4px; /* Slightly sharper corners feel more architectural than round ones */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(166, 149, 99, 0.3);
}

.service-image {
    height: 150px;
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Portfolio */
#portfolio .card {
    border: none;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    cursor: pointer;
    background-color: white;
}

#portfolio .card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(166, 149, 99, 0.4);
}

/* Gallery Section */
#gallery {
    padding-bottom: 4rem;
}

#gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

#gallery figure {
    margin: 0;
    overflow: hidden;
    border-radius: 4px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

#gallery figure:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(166, 149, 99, 0.4);
    z-index: 10;
    position: relative;
}

#gallery img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    transition: transform 0.4s ease;
}

#gallery figure:hover img {
    transform: scale(1.1);
}

#gallery figcaption {
    padding: 10px 15px;
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--background-light);
    text-align: center;
    border-radius: 0 0 12px 12px;
}

/* Testimonials */
#testimonials .testimonial-item {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgb(0 0 0 / 0.07);
    transition: box-shadow 0.3s ease;
    font-style: italic;
    color: var(--secondary-color);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#testimonials .testimonial-item:hover {
    box-shadow: 0 15px 35px rgba(166, 149, 99, 0.4);
    font-style: normal;
    color: var(--text-dark);
}

#testimonials .client-name {
    margin-top: 15px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
    font-size: 1rem;
}

/* Contact */
#contact label {
    font-weight: 600;
    color: var(--secondary-color);
}

#contact .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}


/* Contact Info Section (subsection after Contact form) */
#contact-info-section {
    background: white;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    box-shadow: 0 8px 25px rgb(0, 0, 0, 0.07);
    margin-top: 3rem;
    color: var(--text-dark);
}

#contact-info-section h2 {
    margin-bottom: 1.5rem;
}

#contact-info-section .info-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

#contact-info-section .info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    min-width: 24px;
}

#contact-info-section p, #contact-info-section a {
    margin: 0;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
}

#contact-info-section a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--primary-hover);
    color: var(--background-light);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: var(--background-light);
    margin: 0 10px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

/* Floating Social Media Icons Left */
#floating-social-icons {
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

#floating-social-icons a {
    font-size: 28px;
    transition: transform 0.3s ease;
}

#floating-social-icons a:hover {
    transform: scale(1.2);
}

#floating-social-icons a.facebook {
    color: #1877F2;
}

#floating-social-icons a.twitter {
    color: #1DA1F2;
}

#floating-social-icons a.instagram {
    color: #C13584;
}

#floating-social-icons a.linkedin {
    color: #0077B5;
}

#floating-social-icons a.pinterest {
    color: #E60023;
}

#floating-social-icons a.threads {
    color: #000000; /* Threads color */
}

/* Reposition social icons on smaller screens */
@media (max-width: 768px) {
    #floating-social-icons {
        position: fixed;
        top: auto;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        flex-direction: row;
        padding: 8px 0;
        background: rgba(255, 255, 255, 0.95);
        width: 100%;
        justify-content: center;
        gap: 25px;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
        z-index: 9999;
    }

    #floating-social-icons a {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    #floating-social-icons {
        font-size: 18px;
        gap: 18px;
    }
}

/* Floating Action Buttons - WhatsApp and Call */
#whatsapp-fab,
#call-fab {
    position: fixed;
    right: 20px;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#whatsapp-fab {
    bottom: 20px;
    background-color: #25d366; /* WhatsApp green */
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.6);
}

#whatsapp-fab:hover {
    background-color: #1ebe57;
    box-shadow: 0 8px 18px rgba(27, 173, 87, 0.8);
}

#call-fab {
    background-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(184, 150, 85, 0.3);
}

#call-fab:hover {
    background-color: var(--primary-hover);
}

/* Overlay that blocks UI during submission */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1055; /* Above Bootstrap modals (z=1050) */
    display: none;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.3rem;
    }

    #hero p {
        font-size: 1.1rem;
    }

    .service-item {
        margin-bottom: 20px;
    }
}

#about h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

#about .border {
    border-color: #eee !important;
    transition: all 0.3s ease;
}

#about .border:hover {
    border-color: var(--primary-color) !important;
    transform: translateY(-5px);
}

#about p.lead {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Service Card Refinement */
.service-card {
    background: transparent;
    transition: all 0.4s ease;
}

.service-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 4px; /* Sharp, architectural corners */
    margin-bottom: 20px;
}

.service-img-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(20%); /* Subtle desaturation for a premium look */
    transition: all 0.5s ease;
}

.service-card:hover .service-img-container img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.service-number {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.service-content h5 {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 0.95rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

.service-divider {
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.service-card:hover .service-divider {
    width: 60px;
}
/* Process Section Styles */
.process-wrapper {
    position: relative;
    padding-top: 20px;
}

/* Connecting line on desktop */
@media (min-width: 768px) {
    .process-wrapper::before {
        content: '';
        position: absolute;
        top: 55px;
        left: 10%;
        right: 10%;
        height: 1px;
        background: #e0e0e0;
        z-index: 1;
    }
}

.process-step {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--background-light);
    color: var(--primary-color);
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.process-step h5 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--secondary-color);
    padding: 0 10px;
}

.filter-btn {
    background: none;
    border: none;
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.filter-btn.active, .filter-btn:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.portfolio-img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 250px;
    object-fit: cover;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}
/* CTA Banner Styles */
#cta-banner {
    background-color: var(--background-light);
}

.cta-box {
    /* Using a gradient of your Brand Gold and a deep Charcoal */
    background: linear-gradient(135deg, var(--primary-color) 0%, #2D2D2D 100%);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

/* Subtle architectural pattern overlay */
.cta-box::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.05;
    background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
    pointer-events: none;
}

.cta-box h2 {
    color: #fff;
}

.cta-box .btn-light {
    color: var(--text-dark);
    border: none;
    transition: all 0.3s ease;
}

.cta-box .btn-light:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-box .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

/* Hero Premium Styling */
.hero-premium {
    height: 100vh; /* Fallback for older browsers */
    height: 100dvh; /* Dynamic height for modern mobile browsers */
    width: 100%;
    position: relative;
    background-color: #111;
}

.hero-premium .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    height: 100%;
    width: 100%;
 /* background: rgba(0,0,0,0.2); */
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 650px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.4); /* Darker glass */
    backdrop-filter: blur(20px);    /* Stronger frost effect */
    border-radius: 0 8px 8px 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 4px solid var(--primary-color);
    /*box-shadow: 10px 10px 20px rgba(0,0,0,1);*/
}

.hero-subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem); /* Responsive sizing */
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.8);
}

.hero-description {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 35px;
    font-weight: 300;
}


#contact .btn-submit {
    background-color: var(--primary-color);
    color: var(--surface-white);
    padding: 15px 35px;
    border-radius: 0; /* Match Hero and Service card sharp corners */
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

#contact .btn-submit:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
}

/* Premium Button Styling */

.btn-premium {
    background-color: var(--primary-color);
    color: var(--surface-white);
    padding: 15px 35px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}
.btn-premium:hover {
    background-color: #fff;
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* Minimalist Indicators */
.carousel-indicators [data-bs-target] {
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}
/* Add to styles.css */
.nav-quote-btn {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 4px;
    margin-left: 15px;
    font-weight: 600;
}
.nav-quote-btn:hover {
    background-color: var(--primary-hover);
}

/* Project Page Specifics */
.text-gold {
    color: var(--primary-color);
}

.project-specs {
    border-color: #eee !important;
}

.project-specs div {
    min-width: 120px;
}

.project-specs small {
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "|"; /* Premium vertical separator instead of slash */
}

/* Back to Portfolio Button */
.btn-back {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-back:hover {
    background: var(--primary-color);
    color: white;
}