/* --- Global Typography Overrides --- */
body {
    font-family: 'Inter', sans-serif;;
    color: #2b2b2b;
    overflow-x: hidden;
    background-color: #fcfcfc;
    letter-spacing: -0.2px; 
}

/* --- Navbar Brand Logo Customizations --- */
.navbar {
    border-bottom: 3px solid #0076c0; 
}

.navbar-nav .nav-link {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700; 
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #111111;
    padding: 0.5rem 1.2rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: #f39200 !important; 
}

.dropdown-menu {
    border-top: 3px solid #f39200 !important; 
}

.dropdown-menu-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1.5rem;
    color: #333333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-menu-item:hover {
    background-color: #f8f9fa;
    color: #0076c0;
    padding-left: 1.8rem; 
}

.navbar-logo {
    height: 55px; 
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

/* --- Premium Carousel Slider Matrix --- */
.carousel-item {
    height: 75vh;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Align slider text positioning layer controls */
.carousel-caption {
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding-bottom: 0 !important;
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 4.2rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    max-width: 620px;
    font-size: 1.1rem;
    line-height: 1.65;
}

.tracking-wide {
    letter-spacing: 0.5px;
}

/* Custom Styled Indicators */
.carousel-indicators [data-bs-target] {
    width: 35px;
    height: 4px;
    background-color: #ffffff;
    opacity: 0.4;
    transition: all 0.3s ease;
}
.carousel-indicators .active {
    width: 50px;
    background-color: #f39200 !important; 
    opacity: 1;
}

/* --- High-End 3D Flip Carousel Transition --- */
.custom-flip-carousel {
    perspective: 1500px; 
}

.custom-flip-carousel .carousel-inner {
    overflow: visible;
}

.custom-flip-carousel .carousel-item {
    backface-visibility: hidden;
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 0.8s ease-in-out;
    transform: rotateY(90deg); 
    position: absolute;
    display: block;
    width: 100%;
    top: 0;
    left: 0;
}

/* Active Slide position */
.custom-flip-carousel .carousel-item.active {
    position: relative;
    opacity: 1;
    transform: rotateY(0deg); 
    z-index: 1;
}

/* Next / Prev standard setup overrides to maintain structure layout stability */
.custom-flip-carousel .carousel-item-next.carousel-item-start,
.custom-flip-carousel .carousel-item-prev.carousel-item-end {
    transform: rotateY(0deg);
    opacity: 1;
}

.custom-flip-carousel .carousel-item-start.active {
    transform: rotateY(-90deg); 
    opacity: 0;
}

.custom-flip-carousel .carousel-item-end.active {
    transform: rotateY(90deg); 
    opacity: 0;
}

/* Smooth internal text delay action tracking */
.custom-flip-carousel .carousel-item.active .hero-title {
    animation: fadeInDelayed 0.5s 0.3s ease forwards;
    opacity: 0;
}

@keyframes fadeInDelayed {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- Responsive Layout Handling --- */
@media (max-width: 991.98px) {
    .carousel-item {
        height: 60vh;
    }
    .hero-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }
}

@media (max-width: 767.98px) {
    .carousel-item {
        height: 55vh;
        min-height: 380px;
    }
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
}

/* Custom Styled Buttons Matching Brand Color Elements */
.btn-primary {
    background-color: #0076c0 !important;
    border-color: #0076c0 !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #f39200 !important; 
    border-color: #f39200 !important;
}

/* --- Collections Grid Core Layout --- */
.section-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #111111;
    font-size: 2.3rem;
}
.section-title::after {
    content: '';
    position: absolute;
    width: 75px;
    height: 4px;
    background-color: #f39200; 
    border-radius: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 2px 4px rgba(0, 118, 192, 0.2);
}

.category-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    border-bottom: 3px solid transparent !important;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 118, 192, 0.12) !important;
    border-bottom: 3px solid #0076c0 !important; 
}

.category-card .card-title {
    font-family: 'Space Grotesk', sans-serif; 
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.2px;
    color: #111111;
}

.category-card .card-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555555;
}
.category-card .img-wrapper {
    height: 340px; 
    overflow: hidden;
    position: relative;
    background-color: #f8f9fa; 
}

.category-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-card:hover .img-wrapper img {
    transform: scale(1.08);
}

@media (max-width: 767.98px) {
    .category-card .img-wrapper {
        height: 280px; 
    }
}

.btn-link {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: #0076c0 !important;
    transition: color 0.3s ease;
}

.category-card:hover .btn-link {
    color: #f39200 !important; /* Label change toggle reaction */
}

/* --- Footer Elements Matrix --- */
.footer-links-matrix li a {
    transition: all 0.3s ease;
}

.footer-links-matrix li a:hover {
    color: #0076bd !important;
    padding-left: 4px;
}

/* Social Icon Hover Glow */
.footer-social-matrix a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-social-matrix a:hover {
    background-color: #0076bd !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   Footer Map & Layout Tuning
   ========================================================================== */
.footer-map-wrapper iframe {
    filter: grayscale(20%) invert(90%) contrast(100%); 
    transition: all 0.4s ease;
}

.footer-map-wrapper:hover iframe {
    filter: none; 
}

/* Social Matrix Alignment */
.footer-social-matrix a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0 !important;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-matrix a:hover {
    background-color: #0076bd !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}
footer {
    border-top: 5px solid #f39200; 
}

footer h5 {
    font-family: 'Space Grotesk', sans-serif; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer .bi-chevron-right {
    color: #f39200 !important;
}

footer .bi-geo-alt-fill,
footer .bi-telephone-fill,
footer .bi-envelope-fill {
    color: #0076c0 !important;
}

.footer-product-dropdown {
    position: relative;
}

.footer-submenu {
    display: none;
    position: absolute;
    left: 45%;
    top: 0;
    min-width: 220px;
    background: #1f1f1f;
    padding: 12px;
    border-radius: 8px;
    z-index: 999;
}

.footer-submenu li {
    margin-bottom: 8px;
}

.footer-submenu li:last-child {
    margin-bottom: 0;
}

.footer-submenu a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.footer-submenu a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-product-dropdown:hover .footer-submenu {
    display: block;
}

/* Mobile & Tablet */
@media (max-width: 991px) {
    .footer-submenu {
        position: static;
        display: none;
        background: transparent;
        padding: 8px 0 0 15px;
    }

    .footer-product-dropdown:hover .footer-submenu {
        display: block;
    }
}
@media (max-width: 767px) {
    .footer-contact {
        text-align: center;
    }

    .footer-contact .d-flex {
        justify-content: center;
    }
}

/* --- Ultra Fluid Device Support --- */

@media (max-width: 767.98px) {
    .navbar-logo {
        height: 42px;
    }
    .carousel-item {
        height: 50vh;
        min-height: 360px;
    }
    .carousel-caption h1 {
        font-size: 1.8rem;
    }
    .carousel-caption p {
        font-size: 0.9rem;
    }
}

/* --- About Us Premium CSS Styles --- */
#about-us {
    overflow: hidden;
}

#about-us .tracking-wide {
    letter-spacing: 1.5px;
}

#about-us img {
    transition: transform 0.8s ease;
}

#about-us:hover img {
    transform: scale(1.03); 
}

@media (max-width: 575.98px) {
    #about-us .display-5 {
        font-size: 1.8rem !important; 
        line-height: 1.2 !important;
    }
    
    #about-us .lead {
        font-size: 0.95rem !important;
    }
    
    #about-us .position-absolute.bg-primary {
        display: none; 
    }
    
    #about-us .bg-warning.p-4 {
        position: relative !important;
        margin-top: 15px !important;
        margin-left: 0 !important;
        margin-bottom: 0 !important;
        transform: none !important;
        width: 100% !important;
        text-align: center !important;
        display: block !important;
    }
}
/* Service Section */
.fw-extrabold {
    font-weight: 800 !important;
}

.bento-box {
    border-radius: 16px !important; 
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 118, 189, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
}

.blur-effect {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.max-w-400 { max-width: 400px; }
.max-w-600 { max-width: 600px; }

.hover-lift:hover {
    transform: translateX(4px);
}

.bento-img-box {
    border-radius: 20px !important; 
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.bento-fa-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex !important;     
    align-items: center !important;
    justify-content: center !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.bento-img-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

.bento-fa-icon i, .bento-fa-icon .fas {
    font-family: "Font Awesome 6 Free" !important; 
    font-weight: 900 !important;                  
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
}
.blur-effect {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 575.98px) {
    .bento-img-box {
        min-height: 340px !important;
        border-radius: 14px !important;
    }
    
    .bento-img-box h3 {
        font-size: 1.35rem !important;
    }
    
    .bento-img-box p {
        font-size: 0.82rem !important;
    }
}

@media (max-width: 575.98px) {
    #services .display-5 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word !important; 
        white-space: normal !important;
    }
    
    .bento-box {
        padding: 1.8rem 1.2rem !important; 
        border-radius: 12px !important;
    }
    
    .bento-box h3 {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
    }
    
    .bento-box p {
        font-size: 0.8rem !important;
        line-height: 1.6 !important;
    }
    
    #services .btn-lg {
        width: 100% !important; 
        text-align: center !important;
    }
}

@media (min-width: 992px) {
    .sticky-sidebar-panel {
        position: -webkit-sticky;
        position: sticky;
        top: 120px;
        z-index: 10;
    }
}

.feature-number-matrix {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(0, 118, 189, 0.12); 
    transition: all 0.4s ease;
    padding-top: 2px;
}

.feature-number-matrix.text-warning-shade {
    color: rgba(243, 146, 0, 0.12); 
}

.feature-number-matrix.text-dark-shade {
    color: rgba(33, 37, 41, 0.12); 
}

.split-feature-row {
    transition: all 0.4s ease;
    position: relative;
}

.split-feature-row:hover {
    transform: translateX(10px);
}

.split-feature-row:hover .feature-number-matrix {
    color: #0076bd !important;
    transform: scale(1.08);
}

.split-feature-row:nth-child(2):hover .feature-number-matrix {
    color: #f39200 !important;
}

.split-feature-row:nth-child(3):hover .feature-number-matrix {
    color: #212529 !important;
}

.style-badge {
    font-size: 0.95rem;
}

@media (max-width: 575.98px) {
    .feature-number-matrix {
        font-size: 2rem;
    }
    
    .split-feature-row h4 {
        font-size: 1.15rem !important;
    }
    
    #why-choose-us .display-5 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }
}

/* ==========================================================================
   Premium Minimal Accordion FAQ Style Engine
   ========================================================================== */
.faq-wrapper {
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Base style for accordion trigger button */
.faq-btn {
    background-color: #ffffff !important;
    color: #212529 !important;
    padding: 1.5rem 1.8rem !important;
    font-size: 0.95rem;
    letter-spacing: -0.3px;
    box-shadow: none !important; 
}

.faq-btn:not(.collapsed) {
    color: #0076bd !important; 
    background-color: #ffffff !important;
}

.faq-wrapper .accordion-body {
    padding-left: 1.8rem !important;
    padding-right: 1.8rem !important;
    padding-bottom: 1.5rem !important;
}

.faq-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04) !important;
}

@media (max-width: 575.98px) {
    .faq-btn {
        padding: 1.2rem 1rem !important;
        font-size: 0.85rem !important;
    }
    
    .faq-wrapper .accordion-body {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        padding-bottom: 1.2rem !important;
    }
    
    #faq-section .display-5 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }
}

/* ==========================================================================
   Premium Testimonial Matrix UI Styles
   ========================================================================== */
.testimonial-card {
    border-radius: 16px !important;
    background-color: #ffffff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
}

.client-avatar-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    font-weight: 700;
    flex-shrink: 0;
}

.position-text {
    font-size: 0.75rem;
    font-weight: 500;
}

#testimonials .display-5 {
    font-size: 2.5rem !important; 
    letter-spacing: -1px !important;
    word-break: break-word;
}

@media (max-width: 991.98px) {
    #testimonials .display-5 {
        font-size: 2rem !important;
    }
}

@media (max-width: 575.98px) {
    .testimonial-card {
        padding: 1.8rem 1.2rem !important;
    }
    
    #testimonials .display-5 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }
}

/*Floating Trigger Styles */
.whatsapp-floating-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px; 
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    z-index: 9999; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-floating-trigger:hover {
    transform: scale(1.1) rotate(8deg);
    background-color: #20ba5a;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    left: 0;
    top: 0;
    z-index: -1;
    animation: whatsappPulse 2s infinite ease-out;
    opacity: 0.4;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 575.98px) {
    .whatsapp-floating-trigger {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   Premium Left-Aligned Phone Floating Widget Styles
   ========================================================================== */
.phone-floating-trigger {
    position: fixed;
    bottom: 100px; 
    right: 30px;   
    width: 56px;
    height: 56px;
    background-color: #0076bd; 
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 118, 189, 0.3);
    z-index: 9999; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.phone-floating-trigger:hover {
    transform: scale(1.1) rotate(15deg);
    background-color: #005c96;
    box-shadow: 0 12px 30px rgba(0, 118, 189, 0.4);
}

.phone-icon-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0076bd;
    border-radius: 50%;
    left: 0;
    top: 0;
    z-index: -1;
    animation: phonePulse 2.2s infinite ease-out;
    opacity: 0.4;
}

@keyframes phonePulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 575.98px) {
    .phone-floating-trigger {
        bottom: 84px; 
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .whatsapp-floating-trigger {
        bottom: 20px;
        left: 250px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   About Page Hero Banner Image Aesthetics
   ========================================================================== */
.about-hero-image-wrapper {
    max-width: 500px;
    height: auto;
}

.about-hero-image-frame {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: rotate(0deg);
}

.transition-zoom {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-hero-image-wrapper:hover .about-hero-image-frame {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 118, 189, 0.12) !important;
}

.about-hero-image-wrapper:hover .transition-zoom {
    transform: scale(1.05); 
}

.about-hero-image-wrapper:hover .about-hero-shape-accent {
    transform: rotate(2deg) scale(0.98);
    background-color: #f39200 !important; 
    transition: all 0.5s ease;
}

/* Quick Responsive Tweak */
@media (max-width: 991.98px) {
    .about-hero-image-wrapper {
        max-width: 100%;
        margin-top: 20px;
    }
    .about-hero-image-frame img {
        min-height: 280px !important;
    }
}

/* ==========================================================================
   SEO Section Layout Micro-Interactions
   ========================================================================== */
.seo-about-frame {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover Engine: Smooth image zoom & card float */
.seo-about-image-wrapper:hover .seo-about-frame {
    transform: translateY(-6px) rotate(1deg);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.06) !important;
}

.seo-about-image-wrapper:hover .transition-zoom {
    transform: scale(1.04);
}

.seo-about-image-wrapper:hover .seo-about-shape {
    transform: rotate(1deg) scale(0.97);
    background-color: #0076bd !important; 
    transition: all 0.5s ease;
}

.seo-feature-list > div:hover .seo-bullet-icon {
    background-color: #0076bd !important;
    color: #ffffff !important;
    border-color: #0076bd !important;
    transition: all 0.3s ease;
}

.reveal-element {
    opacity: 0;
    will-change: transform, opacity;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-up { transform: translateY(40px); }
.slide-left { transform: translateX(-60px); }
.slide-right { transform: translateX(60px); }
.scale-up { transform: scale(0.92); opacity: 0; }

.reveal-element.active-reveal {
    opacity: 1;
    transform: translate(0) scale(1);
}

.animate-pulse-bg {
    animation: radialGlowPulse 8s infinite ease-in-out;
}
@keyframes radialGlowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.04; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.08; }
}

#blueprint-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#blueprint-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.04) !important;
}

#blueprint-card:hover .icon-bounce {
    animation: microBounce 0.6s ease;
}
@keyframes microBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* ==========================================================================
   Luxury Card Matrix - Layer and Opacity Fix 
   ========================================================================== */
.luxury-pillar-card {
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    background-color: #fcfdfe !important;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1; /* Establishes basic card layer context */
}

/* Fix 1: Pushing Content to the Top Layer so letters never hide */
.luxury-pillar-card .position-relative.z-2 {
    position: relative;
    z-index: 3 !important; /* Forces text to float seamlessly on top */
}

/* Fix 2: Making the Giant Numbers ultra-dim and shifting them right behind text */
.luxury-card-number {
    font-family: 'Syne', sans-serif;
    font-size: 7.5rem;
    right: 15px;
    bottom: -15px;
    pointer-events: none;
    line-height: 1;
    color: #000000;
    opacity: 0.200 !important; /* Shifting from heavy dark to soft whisper tone */
    z-index: 1 !important;    /* Keeps numbers safely underneath the text layer */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover Engine Changes */
.luxury-pillar-card:hover {
    transform: translateY(-8px);
    background-color: #ffffff !important;
    border-color: rgba(0, 118, 189, 0.08) !important;
    box-shadow: 0 30px 60px rgba(0, 118, 189, 0.05) !important;
}

/* Fix 3: Controlled dim accent pop on hover */
.luxury-pillar-card:hover .luxury-card-number {
    opacity: 0.045 !important; /* Smooth subtle contrast increase without breaking legibility */
    transform: scale(1.03);
    color: #0076bd !important; /* Turns subtle brand blue behind text */
}

/* Rest of your existing hover rules remain fine */
.luxury-icon-box {
    width: 52px;
    height: 52px;
    font-size: 1.15rem;
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.luxury-pillar-card:hover .luxury-icon-box {
    transform: translateY(-4px) scale(1.05);
    background-color: #0076bd !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(0, 118, 189, 0.2) !important;
}
.luxury-pillar-card:hover .text-warning {
    background-color: #f39200 !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(243, 146, 0, 0.2) !important;
}
.luxury-pillar-card:hover .luxury-card-line {
    width: 100% !important;
}

/* ==========================================================================
   Executive Quote Box Micro-Interactions
   ========================================================================== */
.executive-quote-box {
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.quote-vertical-line {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.author-avatar {
    transition: all 0.4s ease;
}

.executive-quote-box:hover {
    transform: translateY(-4px);
    background-color: #ffffff !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 118, 189, 0.08) !important;
}

.executive-quote-box:hover .quote-vertical-line {
    background-color: #f39200 !important; 
    height: 140px !important;
}

.executive-quote-box:hover .author-avatar {
    background-color: #0076bd !important;
    color: #ffffff !important;
    transform: rotate(360deg);
}

@media (max-width: 767.98px) {
    .quote-statement {
        font-size: 1.25rem !important;
        line-height: 1.5 !important;
    }
}

/* ==========================================================================
   Contact Page Dashboard Aesthetics
   ========================================================================== */
.contact-info-stack > div {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-info-stack > div:hover {
    transform: translateX(6px);
    background-color: #ffffff !important;
    border-color: rgba(0, 118, 189, 0.1) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03) !important;
}

.transition-link:hover {
    color: #0076bd !important;
}

.custom-floating .form-control {
    padding: 1.2rem 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent !important;
}

.custom-floating .form-control:focus {
    box-shadow: 0 10px 25px rgba(0, 118, 189, 0.05) !important;
    border-color: rgba(0, 118, 189, 0.2) !important;
    background-color: #ffffff !important;
}

.custom-submit-btn {
    transition: all 0.4s ease;
    background-color: #0076bd;
}

.custom-submit-btn:hover {
    background-color: #f39200 !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(243, 146, 0, 0.25) !important;
}

#product-showcase .reveal-element{
    opacity:1 !important;
    transform:none !important;
    transition:none !important;
}

/* cafe chairs */
@keyframes pulseBgEffect {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.05; }
    50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.08; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.05; }
}

.animate-pulse-bg {
    animation: pulseBgEffect 8s infinite ease-in-out;
}

.reveal-element {
    opacity: 1; 
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.transition-zoom {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-hero-image-frame:hover .transition-zoom,
.seo-about-frame:hover .transition-zoom {
    transform: scale(1.04);
}

.clean-image-modal .modal-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.clean-image-modal .image-display-card {
    background-color: #ffffff;
    border-radius: 24px; 
    padding: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: inline-block;
    width: 100%;
}

.floating-title-pill {
    background-color: rgba(27, 30, 33, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.custom-modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 2rem;
    z-index: 1060;
    transition: color 0.2s ease;
    cursor: pointer;
}

.custom-modal-close:hover {
    color: #ffffff;
}

.modal-backdrop.show {
    opacity: 0.75 !important;
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; 
    }
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 576px) {
    .mobile-heading {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;  
        letter-spacing: -1px !important;
    }
}

@media (max-width: 767px) {
    /* Section 1 Heading */
    .display-4.mobile-heading {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word;
    }

    /* Section 4 Heading */
    .fw-extrabold.text-dark.text-uppercase {
        font-size: 1.6rem !important; 
        line-height: 1.3 !important;
    }
}

@media (max-width: 576px) {
    .fw-extrabold {
        font-size: 1.6rem !important; 
        line-height: 1.2 !important;
        word-wrap: break-word; 
        padding-left: 15px;   
        padding-right: 15px;
    }
}
  