

:root{
    --black:#000;
    --accent:#d1b06b; /* luxury gold */
}

/* =========================================
   GLOBAL
========================================= */
body {
    font-family: 'Jost', sans-serif;
    color:#000;
    background:#fff;
}
h1,h2,h3,h4,h5 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing:-0.02em;
}

/* =========================================
   HEADER
========================================= */
.main-header {
    background:#fff;
    padding:14px 0;
    border-bottom:1px solid rgba(0,0,0,0.06);
    transition:0.3s;
}
.main-header.sticky {
    position:fixed;
    top:0; left:0;
    width:100%;
    z-index:9999;
    box-shadow:0 8px 24px rgba(0,0,0,0.12);
}

.navbar-brand img {
    height:40px;
}

.navbar-nav .nav-link {
    font-size:0.95rem;
    font-weight:500;
    color:#111;
    letter-spacing:0.04em;
    white-space:nowrap;
    text-transform:uppercase;
}
.navbar-nav .nav-link:hover {
    color:#000;
}

/* WhatsApp header button */
.btn-whatsapp-header {
    border:1px solid #d1b06b;
    color:#fff;
    padding:8px 18px;
    text-transform:uppercase;
    font-size:0.85rem;
    font-weight:600;
    border-radius:0;
    text-decoration: none;
    background: #b49450;
}
.btn-whatsapp-header:hover {
    background:#000;
    color:#fff;
}
.btn-whatsapp-header i {
    margin-right:6px;
}

/* =========================================
   DESKTOP MEGA MENU
========================================= */
.dropdown-mega {
    position:static;
}

.dropdown-mega .mega-menu {
    display:none;
    position:absolute;
    top:68px;
    left:0;
    width:100%;
    background:#fff;
    padding:32px 50px;
    border-top:1px solid rgba(0,0,0,0.08);
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    z-index:9999;
}
.dropdown-mega:hover .mega-menu {
    display:block;
}

.mega-menu h6 {
    text-transform:uppercase;
    letter-spacing:0.08em;
    font-size:0.82rem;
    margin-bottom:10px;
    color:#555;
}
.mega-menu a {
    display:block;
    padding:4px 0;
    font-size:0.92rem;
    color:#111;
        text-decoration: none;
}
.mega-menu a:hover {
    color:var(--accent);
}

/* =========================================
   MOBILE NAVIGATION
========================================= */
.navbar-toggler {
    border:none;
    background:#f0f0f0;
    width:42px;
    height:42px;
    border-radius:8px;
}
.navbar-toggler i {
    font-size:24px;
    color:#000;
}

.mobile-panel {
    position:fixed;
    top:0; left:-100%;
    width:80%;
    max-width:360px;
    height:100%;
    background:#fff;
    padding:25px 20px;
    box-shadow:18px 0 40px rgba(0,0,0,0.15);
    z-index:99999;
    transition:0.3s;
    overflow-y:auto;
}
.mobile-panel.open {
    left:0;
}

.mobile-close {
    font-size:28px;
    background:none;
    border:none;
}

.mobile-link {
    background:none;
    border:none;
    width:100%;
    text-align:left;
    padding:10px 0;
    border-bottom:1px solid #eee;
    font-weight:500;
}

.mobile-link.main {
    text-transform:uppercase;
    font-size:0.9rem;
    letter-spacing:0.06em;
}

.mobile-submenu {
    display:none;
    padding-left:10px;
    border-left:2px solid #efefef;
}
.mobile-submenu.open {
    display:block;
}

.mobile-subtitle {
    margin-top:12px;
    font-size:0.8rem;
    text-transform:uppercase;
    letter-spacing:0.12em;
    color:#888;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    height:85vh;
    background:url('/assets/img/hero-bg.webp') center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}
.hero::after {
    content:"";
    position:absolute;
    top:0; left:0;
    width:100%; height:100%;
    background:linear-gradient(120deg, rgba(0,0,0,0.68), rgba(0,0,0,0.35));
}
.hero-content {
    position:relative;
    z-index:2;
    max-width:880px;
    padding:0 22px;
}
.hero h1 {
    font-size:3.2rem;
    font-weight:600;
}
.hero p {
    font-size:1.1rem;
    opacity:0.9;
    margin-top:10px;
}

.btn-main {
    background:#fff;
    color:#000;
    border:2px solid #fff;
    padding:12px 34px;
    border-radius:0;
    margin-top:22px;
    letter-spacing:0.12em;
    font-weight:600;
}
.btn-main:hover {
    background:transparent;
    color:#fff;
}


/* =========================================
   FLOATING WHATSAPP
========================================= */
.whatsapp-btn {
    position:fixed;
    bottom:22px;
    right:18px;
    width:55px;
    height:55px;
    background:#25D366;
    color:#fff;
    font-size:28px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
    z-index:99999;
}





/* ============================
   ABOUT SECTION – Sharp
=============================== */
.about-section-sharp {
    padding:100px 0;
    background:#fff;
}

.about-title-wrap .about-tag {
    font-size:0.8rem;
    text-transform:uppercase;
    letter-spacing:0.15em;
    color:#999;
    display:block;
    margin-bottom:14px;
}

.about-heading {
    font-family:'Space Grotesk', sans-serif;
    font-size:2.4rem;
    font-weight:600;
    line-height:1.3;
    margin-bottom:22px;
    color:#000;
}

.about-text {
    font-size:1.05rem;
    line-height:1.7;
    color:#444;
    max-width:500px;
    margin-bottom:28px;
}

.about-btn {
    display:inline-block;
    padding:12px 32px;
    border:2px solid #000;
    text-transform:uppercase;
    letter-spacing:0.12em;
    font-size:0.85rem;
    font-weight:600;
    color:#000;
    background:none;
    border-radius:0;
    transition:0.3s;
    text-decoration: none;
}
.about-btn:hover {
    background:#000;
    color:#fff;
}

/* IMAGE BOX */
.about-img-box {
    width:100%;
    border:1px solid #eee;
    padding:14px;
}
.about-img-box img {
    width:100%;
    height:auto;
    display:block;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .about-section-sharp {
        padding:70px 0;
    }
    .about-heading {
        font-size:1.9rem;
    }
}




/* ============================
   WHY CHOOSE US – Sharp
=============================== */
.whychoose-sharp {
    background:#f8f5ef; /* light luxury tone */
    padding:100px 0;
}

.why-tag {
    font-size:0.8rem;
    color:#777;
    letter-spacing:0.15em;
    text-transform:uppercase;
    display:block;
    margin-bottom:12px;
}

.why-heading {
    font-family:'Space Grotesk', sans-serif;
    font-size:2.2rem;
    font-weight:600;
    color:#000;
    letter-spacing:-0.02em;
}

/* Box Styling */
.why-box {
    background:#fff;
    padding:35px 28px;
    border:1px solid #eee;
    text-align:left;
    transition:0.3s;
}
.why-box:hover {
    border-color:#d1b06b;
    box-shadow:0 10px 28px rgba(0,0,0,0.08);
}

.why-icon {
    font-size:2.3rem;
    color:#d1b06b; /* luxury accent */
    margin-bottom:18px;
}

.why-box h4 {
    font-size:1.1rem;
    font-family:'Space Grotesk', sans-serif;
    font-weight:600;
    margin-bottom:10px;
}

.why-box p {
    color:#555;
    font-size:0.95rem;
    line-height:1.6;
}

/* Responsive */
@media (max-width: 767px) {
    .whychoose-sharp {
        padding:70px 0;
    }
    .why-heading {
        font-size:1.8rem;
    }
    .why-box {
        padding:28px 24px;
    }
}




/* ============================
   PRODUCTS PREVIEW – Sharp
=============================== */
.sharp-products-section {
    padding:100px 0;
    background:#fff;
}

.products-tag {
    font-size:0.8rem;
    color:#777;
    letter-spacing:0.15em;
    text-transform:uppercase;
    display:block;
    margin-bottom:12px;
}

.products-heading {
    font-family:'Space Grotesk', sans-serif;
    font-size:2.2rem;
    font-weight:600;
    color:#000;
    letter-spacing:-0.02em;
    margin-bottom:30px;
}

/* Product Card */
.product-card-sharp {
    background:#fff;
    padding:18px;
    border:1px solid #eee;
    transition:0.3s;
}
.product-card-sharp:hover {
    border-color:#d1b06b;
    box-shadow:0 8px 22px rgba(0,0,0,0.08);
}

.product-card-sharp img {
    width:100%;
    height:200px;
    object-fit:cover;
    margin-bottom:15px;
}

.product-card-sharp h4 {
    font-family:'Space Grotesk', sans-serif;
    font-size:1.1rem;
    font-weight:600;
    margin-bottom:6px;
}

.product-card-sharp p {
    font-size:0.9rem;
    color:#555;
}

/* Swiper overrides */
.sharp-products-section .swiper {
    padding-bottom:50px;
}

.swiper-pagination-bullet {
    background:#000;
    opacity:0.4;
}
.swiper-pagination-bullet-active {
    background:#d1b06b;
    opacity:1;
}

@media(max-width:768px){
    .products-heading {
        font-size:1.8rem;
    }
    .product-card-sharp img {
        height:170px;
    }
}


/* Product Button */
.product-btn-sharp {
    display:inline-block;
    margin-top:12px;
    padding:8px 20px;
    border:1px solid #000;
    text-transform:uppercase;
    font-size:0.78rem;
    font-weight:600;
    letter-spacing:0.1em;
    color:#fff;
    background:#000;
    border-radius:0;
    transition:0.3s;
    text-decoration: none;
}

.product-btn-sharp:hover {
    background:#000;
    color:#fff;
        text-decoration: none;

}




/* ============================
   INDUSTRIES SECTION – Sharp
=============================== */
.industries-sharp {
    background:#f8f5ef; /* alternate luxury bg */
    padding:100px 0;
}

.industries-tag {
    font-size:0.8rem;
    color:#777;
    text-transform:uppercase;
    letter-spacing:0.15em;
    display:block;
    margin-bottom:14px;
}

.industries-heading {
    font-family:'Space Grotesk', sans-serif;
    font-size:2.2rem;
    font-weight:600;
    color:#000;
    letter-spacing:-0.02em;
}

/* Industry Box */
.industry-box-sharp {
    background:#fff;
    border:1px solid #e5e5e5;
    padding:35px 28px;
    text-align:left;
    transition:0.3s;
}
.industry-box-sharp:hover {
    border-color:#d1b06b;
    box-shadow:0 10px 28px rgba(0,0,0,0.08);
}

.industry-icon {
    font-size:2.4rem;
    color:#d1b06b;
    margin-bottom:16px;
}

.industry-box-sharp h4 {
    font-family:'Space Grotesk', sans-serif;
    font-size:1.2rem;
    font-weight:600;
    margin-bottom:10px;
}

.industry-box-sharp p {
    font-size:0.95rem;
    line-height:1.6;
    color:#555;
}

/* Responsive */
@media(max-width:767px){
    .industries-heading {
        font-size:1.8rem;
    }
    .industries-sharp {
        padding:70px 0;
    }
}




/* ============================
   CTA BAND – Sharp
=============================== */
.cta-sharp {
    background:#000;
    padding:90px 0;
    text-align:center;
    color:#fff;
    position:relative;
}

.cta-inner {
    max-width:820px;
    margin:0 auto;
}

.cta-heading {
    font-family:'Space Grotesk', sans-serif;
    font-size:2.6rem;
    font-weight:600;
    margin-bottom:18px;
    letter-spacing:-0.02em;
    color:#fff;
}

.cta-text {
    font-size:1.1rem;
    color:#e6e6e6;
    margin-bottom:32px;
}

.cta-btn-sharp {
    display:inline-block;
    padding:14px 38px;
    border:2px solid #d1b06b;
    text-transform:uppercase;
    font-size:0.88rem;
    font-weight:600;
    letter-spacing:0.12em;
    background:none;
    color:#d1b06b;
    border-radius:0;
    transition:0.3s;
    text-decoration: none;
}

.cta-btn-sharp:hover {
    background:#d1b06b;
    color:#000;
}

/* Responsive */
@media(max-width:767px){
    .cta-heading {
        font-size:2rem;
    }
    .cta-sharp {
        padding:70px 0;
    }
}




/* ============================
   MANUFACTURING PROCESS – Sharp
=============================== */
.process-sharp {
    background:#fff;
    padding:100px 0;
}

.process-tag {
    font-size:0.8rem;
    color:#777;
    text-transform:uppercase;
    letter-spacing:0.15em;
    display:block;
    margin-bottom:10px;
}

.process-heading {
    font-family:'Space Grotesk', sans-serif;
    font-size:2.2rem;
    font-weight:600;
    letter-spacing:-0.02em;
    margin-bottom:25px;
}

/* Process Box */
.process-box {
    background:#fff;
    border:1px solid #eee;
    padding:35px 25px;
    text-align:left;
    transition:0.3s;
    position:relative;
}
.process-box:hover {
    border-color:#d1b06b;
    box-shadow:0 10px 28px rgba(0,0,0,0.08);
}

/* Icon + Step */
.process-icon-wrap {
    display:flex;
    align-items:center;
    margin-bottom:18px;
    position:relative;
}

.process-icon {
    font-size:2.3rem;
    color:#d1b06b;
    margin-right:14px;
}

.process-step {
    font-family:'Space Grotesk', sans-serif;
    font-size:1.6rem;
    font-weight:700;
    color:#000;
    opacity:0.12;
    position:absolute;
    right:10px;
}

/* Text */
.process-box h4 {
    font-family:'Space Grotesk', sans-serif;
    font-size:1.1rem;
    font-weight:600;
    margin-bottom:8px;
}

.process-box p {
    font-size:0.95rem;
    color:#555;
    line-height:1.65;
}

/* Responsive */
@media(max-width:767px){
    .process-sharp {
        padding:70px 0;
    }
    .process-heading {
        font-size:1.8rem;
    }
}




/* ============================
   FAQ SECTION – Sharp
=============================== */
.faq-sharp {
    background:#f8f5ef;
    padding:100px 0;
}

.faq-tag {
    font-size:0.8rem;
    color:#777;
    letter-spacing:0.15em;
    text-transform:uppercase;
    display:block;
    margin-bottom:12px;
}

.faq-heading {
    font-family:'Space Grotesk', sans-serif;
    font-size:2.2rem;
    font-weight:600;
    color:#000;
    letter-spacing:-0.02em;
    margin-bottom:30px;
}

/* Accordion Items */
.faq-item {
    border:1px solid #eee;
    margin-bottom:12px;
    border-radius:0;
    overflow:hidden;
    transition:0.3s;
}

.accordion-button {
    background:#fff;
    color:#000;
    font-size:1rem;
    font-weight:600;
    padding:18px 22px;
    font-family:'Space Grotesk', sans-serif;
}

.accordion-button:not(.collapsed) {
    color:#d1b06b; /* gold accent */
    background:#fff8e8;
    box-shadow:none;
}

.accordion-button:focus {
    box-shadow:none;
}

.faq-answer {
    font-size:0.95rem;
    color:#555;
    line-height:1.7;
    padding:18px 22px;
}

/* Icon Color */
.accordion-button::after {
    filter:brightness(0) saturate(100%) invert(81%) sepia(31%) hue-rotate(8deg) saturate(618%) brightness(88%);
}

/* Responsive */
@media(max-width:767px){
    .faq-sharp {
        padding:70px 0;
    }
    .faq-heading {
        font-size:1.8rem;
    }
}




/* ============================
   CONTACT SECTION – Sharp
=============================== */
.contact-sharp {
    background:#fff;
    padding:100px 0;
}

.contact-tag {
    font-size:0.8rem;
    color:#777;
    letter-spacing:0.15em;
    text-transform:uppercase;
    display:block;
    margin-bottom:12px;
}

.contact-heading {
    font-family:'Space Grotesk', sans-serif;
    font-size:2.2rem;
    font-weight:600;
    color:#000;
    letter-spacing:-0.02em;
    margin-bottom:14px;
}

.contact-text {
    font-size:0.98rem;
    color:#555;
    line-height:1.7;
    max-width:420px;
    margin-bottom:26px;
}

.contact-info-block {
    margin-bottom:16px;
}
.contact-info-block h5 {
    font-family:'Space Grotesk', sans-serif;
    font-size:0.95rem;
    text-transform:uppercase;
    letter-spacing:0.12em;
    color:#888;
    margin-bottom:4px;
}
.contact-info-block p {
    margin:0;
    font-size:0.95rem;
}
.contact-info-block a {
    color:#000;
    text-decoration:none;
    border-bottom:1px solid transparent;
}
.contact-info-block a:hover {
    border-color:#000;
}

/* Form Card */
.contact-form-sharp {
    background:#fff;
    border:1px solid #e3e3e3;
    padding:30px 28px;
}

.contact-input {
    border-radius:0;
    border:1px solid #ddd;
    font-size:0.95rem;
}
.contact-input:focus {
    border-color:#000;
    box-shadow:none;
}

/* Button */
.contact-btn-submit {
    display:inline-block;
    padding:12px 32px;
    border:2px solid #000;
    background:#000;
    color:#fff;
    text-transform:uppercase;
    letter-spacing:0.12em;
    font-size:0.85rem;
    font-weight:600;
    border-radius:0;
    transition:0.3s;
}
.contact-btn-submit:hover {
    background:#fff;
    color:#000;
}

/* Responsive */
@media(max-width:767px){
    .contact-sharp {
        padding:70px 0;
    }
    .contact-heading {
        font-size:1.8rem;
    }
    .contact-form-sharp {
        padding:24px 20px;
    }
}




/* ============================
   FOOTER – Sharp
=============================== */
.footer-sharp {
    background:#000;
    padding:70px 0 40px;
    color:#fff;
}

/* Titles */
.footer-title {
    font-family:'Space Grotesk', sans-serif;
    font-size:1.4rem;
    font-weight:600;
    margin-bottom:15px;
    
}

.footer-subtitle {
    font-family:'Space Grotesk', sans-serif;
    font-size:1rem;
    text-transform:uppercase;
    letter-spacing:0.12em;
    margin-bottom:16px;
    color:#d1b06b;
}

/* Text */
.footer-text {
    font-size:0.95rem;
    line-height:1.65;
    color:#ccc;
    max-width:320px;
}

/* Links */
.footer-links,
.footer-contact {
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li,
.footer-contact li {
    margin-bottom:10px;
}

.footer-links a,
.footer-contact a {
    color:#fff;
    text-decoration:none;
    font-size:0.95rem;
    transition:0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color:#d1b06b;
}

/* Contact Icons */
.footer-contact i {
    margin-right:8px;
    color:#d1b06b;
    font-size:1rem;
}

/* Bottom Bar */
.footer-bottom {
    border-top:1px solid rgba(255,255,255,0.15);
    margin-top:40px;
    padding-top:18px;
    text-align:center;
    font-size:0.85rem;
    color:#aaa;
}

/* Responsive */
@media(max-width:767px){
    .footer-title {
        font-size:1.3rem;
    }
    .footer-sharp {
        padding:50px 0 30px;
    }
    .row{
        margin-right: 0px;
    }
}


   

/* =========================================
   SIMPLE DROPDOWN MENU – SHARP
========================================= */
.dropdown-simple {
    position:relative;
}

.dropdown-toggle-sharp {
    cursor:pointer;
}

/* Hide menu initially */
.dropdown-menu-sharp {
    position:absolute;
    top:40px;
    left:0;
    min-width:200px;
    padding:12px 0;
    background:#fff;
    border:1px solid rgba(0,0,0,0.1);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    display:none;
    z-index:9999;
}

/* Dropdown item */
.dropdown-menu-sharp li a {
    display:block;
    padding:10px 18px;
    font-size:0.92rem;
    color:#111;
    text-decoration:none;
    white-space:nowrap;
}

.dropdown-menu-sharp li a:hover {
    background:#f5f5f5;
    color:#d1b06b;
}

/* Show on hover */
.dropdown-simple:hover .dropdown-menu-sharp {
    display:block;
}

/* Ensure arrow spacing matches your header style */
.dropdown-toggle-sharp::after {
    content: "▼";
    font-size:0.55rem;
    margin-left:6px;
    display:inline-block;
    transform:translateY(-1px);
    opacity:0.7;
}





/* ============================
   BREADCRUMB – Sharp
=============================== */
.breadcrumb-sharp {
    background:#000;
    padding:70px 0 65px;
    border-bottom:1px solid #eee;
}

.breadcrumb-inner {
    text-align:center;
}

.breadcrumb-title {
    font-family:'Space Grotesk',sans-serif;
    font-size:2.8rem;
    font-weight:600;
    letter-spacing:-0.02em;
    margin-bottom:12px;
    color:#fff;
}

.trail-sharp {
    justify-content:center;
    gap:6px;
    margin:0;
    padding:0;
    background:none;
}

.trail-sharp .breadcrumb-item a {
    color:#eee;
    text-decoration:none;
    font-size:0.95rem;
}

.trail-sharp .breadcrumb-item a:hover {
    color:#fff;
}

.trail-sharp .breadcrumb-item.active {
    color:#9d9d9d;
    font-weight:400;
    
}

.trail-sharp .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color:#eee;
    padding:0 6px;
    margin-right:10px;
}

/* Responsive */
@media(max-width:767px){
    .breadcrumb-sharp {
        padding:55px 0;
    }
    .breadcrumb-title {
        font-size:2.1rem;
    }
}



/* ============================
   ABOUT PAGE – MAIN ABOUT SECTION
=============================== */
.aboutpage-sharp {
    background:#fff;
    padding:90px 0 100px;
}

.aboutpage-tag {
    font-size:0.8rem;
    color:#777;
    letter-spacing:0.15em;
    text-transform:uppercase;
    display:block;
    margin-bottom:12px;
}

.aboutpage-heading {
    font-family:'Space Grotesk', sans-serif;
    font-size:2.3rem;
    font-weight:600;
    color:#000;
    letter-spacing:-0.02em;
    margin-bottom:18px;
}

.aboutpage-text {
    font-size:0.98rem;
    color:#555;
    line-height:1.8;
    margin-bottom:14px;
}

/* Highlights Box (Right Column) */
.aboutpage-highlight-box {
    border:1px solid #eee;
    padding:22px 20px;
    margin-bottom:18px;
    background:#fafafa;
}

.aboutpage-highlight-box h3 {
    font-family:'Space Grotesk', sans-serif;
    font-size:1.05rem;
    text-transform:uppercase;
    letter-spacing:0.12em;
    margin-bottom:10px;
    color:#000;
}

.aboutpage-highlight-box ul {
    list-style:none;
    padding-left:0;
    margin-bottom:0;
}
.aboutpage-highlight-box li {
    font-size:0.94rem;
    color:#555;
    margin-bottom:8px;
    position:relative;
    padding-left:18px;
}
.aboutpage-highlight-box li::before {
    content:"";
    width:6px;
    height:6px;
    border-radius:50%;
    background:#d1b06b;
    position:absolute;
    left:0;
    top:9px;
}

/* Mission & Vision Row */
.aboutpage-mission-row {
    margin-top:50px;
}

.aboutpage-card {
    border:1px solid #eee;
    padding:24px 22px;
    background:#fdfdfd;
}

.aboutpage-card h4 {
    font-family:'Space Grotesk', sans-serif;
    font-size:1.1rem;
    font-weight:600;
    margin-bottom:10px;
}

.aboutpage-card p {
    font-size:0.95rem;
    color:#555;
    line-height:1.7;
}

/* Responsive */
@media (max-width: 767px) {
    .aboutpage-sharp {
        padding:70px 0 80px;
    }
    .aboutpage-heading {
        font-size:1.9rem;
    }
}


/* ============================
   STREET LIGHTS PAGE – Sharp
=============================== */
.streetlights-sharp {
    background:#fff;
    padding:90px 0 100px;
}

.street-tag {
    font-size:0.8rem;
    color:#777;
    letter-spacing:0.15em;
    text-transform:uppercase;
    display:block;
    margin-bottom:10px;
}

.street-heading {
    font-family:'Space Grotesk', sans-serif;
    font-size:2.3rem;
    font-weight:600;
    letter-spacing:-0.02em;
    color:#000;
    margin-bottom:12px;
}

.street-intro {
    max-width:720px;
    margin:0 auto;
    font-size:0.96rem;
    color:#555;
    line-height:1.7;
}

/* Cards */
.street-card-sharp {
    border:1px solid #eee;
    background:#fafafa;
    display:flex;
    flex-direction:column;
    height:100%;
    transition:0.3s;
}

.street-card-sharp:hover {
    border-color:#d1b06b;
    box-shadow:0 10px 26px rgba(0,0,0,0.08);
    background:#fff;
}

/* Image */
.street-img-wrap {
    width:100%;
    height:300px;
    overflow:hidden;
}
.street-img-wrap img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}
.street-card-sharp:hover img {
    transform:scale(1.06);
}

/* Info */
.street-info {
    padding:18px 18px 22px;
    display:flex;
    flex-direction:column;
    height:auto;
}
.street-info h3 {
    font-family:'Space Grotesk', sans-serif;
    font-size:1.1rem;
    font-weight:600;
    margin-bottom:8px;
}
.street-info p {
    font-size:0.92rem;
    color:#555;
    line-height:1.6;
    margin-bottom:14px;
}

/* Enquire Button */
.street-btn-enquire {
    margin-top:auto;
    display:inline-block;
    padding:8px 20px;
    border:1px solid #000;
    background:#000;
    color:#fff;
    text-transform:uppercase;
    letter-spacing:0.12em;
    font-size:0.78rem;
    font-weight:600;
    border-radius:0;
    text-decoration:none;
    transition:0.3s;
}
.street-btn-enquire:hover {
    background:#fff;
    color:#000;
}

/* Responsive */
@media (max-width: 767px) {
    .streetlights-sharp {
        padding:70px 0 80px;
    }
    .street-heading {
        font-size:1.9rem;
    }
    .street-img-wrap {
        height:300px;
    }
}


     

/* =========================================
   SIMPLE DROPDOWN MENU – SHARP
========================================= */
.dropdown-simple {
    position:relative;
}

.dropdown-toggle-sharp {
    cursor:pointer;
}

/* Hide menu initially */
.dropdown-menu-sharp {
    position:absolute;
    top:40px;
    left:0;
    min-width:200px;
    padding:12px 0;
    background:#fff;
    border:1px solid rgba(0,0,0,0.1);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    display:none;
    z-index:9999;
}

/* Dropdown item */
.dropdown-menu-sharp li a {
    display:block;
    padding:10px 18px;
    font-size:0.92rem;
    color:#111;
    text-decoration:none;
    white-space:nowrap;
}

.dropdown-menu-sharp li a:hover {
    background:#f5f5f5;
    color:#d1b06b;
}

/* Show on hover */
.dropdown-simple:hover .dropdown-menu-sharp {
    display:block;
}

/* Ensure arrow spacing matches your header style */
.dropdown-toggle-sharp::after {
    content: "▼";
    font-size:0.55rem;
    margin-left:6px;
    display:inline-block;
    transform:translateY(-1px);
    opacity:0.7;
}



        
