
@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --bg: #0b0b0b;
    --card: #0f1113;
    --muted: #9b9b9b;
    --text: #f3f3f3;
    --accent: #b88b00;
    /* elegant gold */
    --glass: rgba(255, 255, 255, 0.04);
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    /* font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; */
     font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
    background: linear-gradient(180deg, #080808 0%, #0f0f10 100%);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 12vw;
    gap: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(6px);
}

.logo {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.4px;
    color: var(--text);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .25s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent);
}

.hamburger {
    display: none;
    font-size: 22px;
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
}

/* mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    right: 18px;
    top: 64px;
    background: rgba(0, 0, 0, 0.635);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 10px;
    z-index: 999;
}

.mobile-menu a {
    display: block;
    padding: 10px 14px;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.contact-map-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #000;
    /* black background */
    color: #d4af37;
    /* gold accent */
}

.contact-heading {
    font-size: 2rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-weight: 600;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border: 3px solid #d4af37;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}


/* content containers */
main {
    padding-top: 90px;
}


/* 
.hero {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 48px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--text);
}

.hero-left .muted {
    color: var(--muted);
    margin-bottom: 18px;
}

.hero-cta .btn {
    margin-right: 12px;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
} */

    /* HOME  */

 .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 80px 10%;
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.05));
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .hero-left {
      flex: 1 1 400px;
      max-width: 500px;
    }

    .hero-left h1 {
      font-size: 2.8rem;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 15px;
    }

    .hero-left p {
      color: #ccc;
      font-size: 1rem;
      margin-bottom: 25px;
    }

    .hero-cta {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
    }

    .btn {
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: 500;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn.primary {
      background-color: #d4af37;
      color: #000;
    }

    .btn.primary:hover {
      background-color: #000;
      color: #d4af37;
      border: 1px solid #d4af37;
    }

    .btn.ghost {
      border: 1px solid #d4af37;
      color: #d4af37;
    }

    .btn.ghost:hover {
      background-color: #d4af37;
      color: #000;
    }

    .promo .badge {
      background-color: #d4af37;
      color: #000;
      border-radius: 5px;
      padding: 4px 10px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-right: 8px;
    }

    .promo p {
      display: inline-block;
      color: #aaa;
      font-size: 0.9rem;
    }

    .hero-right {
      flex: 1 1 400px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-card img {
      width: 100%;
      max-width: 450px;
      border-radius: 15px;
      border: 2px solid rgba(212, 175, 55, 0.3);
      box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
      transition: transform 0.3s ease;
    }

    .hero-card img:hover {
      transform: scale(1.03);
    }

    /* 🌟 FEATURED */
    .featured {
      padding: 70px 10%;
      text-align: center;
      background-color: #111;
    }

    .featured h2 {
      font-size: 2.2rem;
      margin-bottom: 40px;
      color: #d4af37;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .featured-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .card.small {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 15px;
      padding: 20px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .card.small:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
      border-color: #d4af37;
    }

    .card.small img {
      width: 100%;
      height: 200px;
      object-fit: contain;
      border-radius: 10px;
      margin-bottom: 15px;
      transition: transform 0.3s ease;
    }

    .card.small:hover img {
      transform: scale(1.05);
    }

    .card.small h3 {
      font-size: 1.1rem;
      color: #d4af37;
      margin-bottom: 8px;
    }

    .card.small p {
      color: #aaa;
      font-size: 0.95rem;
    }

    .cta-inner {
      margin-top: 30px;
    }

    /* 🖤 FOOTER */
    .site-footer {
      background: #000;
      text-align: center;
      padding: 25px;
      border-top: 1px solid rgba(212, 175, 55, 0.2);
      color: #aaa;
      font-size: 0.9rem;
      margin-top: 50px;
    }

   
    

/* featured */
.featured {
    padding: 30px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

/* cards */
/* .card {
    background: var(--card);
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.02);
    text-align: center;
}

.card img {
    /* width: 100%; */
    /* height: 250px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 10px;
}

.card h3 {
    margin: 0 0 6px;
    color: #b88b00;
}

.card p {
    color: #b88a0080;
} */ 

/* about css */

 .about-hero {
      text-align: center;
      padding: 80px 20px 50px;
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.05));
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .about-hero h1 {
      font-size: 2.8rem;
      font-weight: 600;
      letter-spacing: 1px;
    }

    .about-hero p {
      max-width: 700px;
      margin: 15px auto 0;
      font-size: 1rem;
      color: #ccc;
    }

    /* 🪞 TEAM / FEATURE CARDS */
    .team-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 60px 10%;
    }

    .team-cards .card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 15px;
      text-align: center;
      padding: 25px;
      transition: all 0.3s ease;
      overflow: hidden;
    }

    .team-cards .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
      border-color: #d4af37;
    }

    .team-cards .card img {
      width: 100%;
      height: 200px;
      border-radius: 10px;
      object-fit: cover;
      margin-bottom: 20px;
      transition: transform 0.3s ease;
    }

    .team-cards .card:hover img {
      transform: scale(1.05);
    }

    .team-cards h3 {
      color: #d4af37;
      font-size: 1.3rem;
      margin-bottom: 10px;
    }

    .team-cards p {
      color: #bbb;
      font-size: 0.95rem;
    }

    /* 🛍️ OUR SERVICES SECTION */
    .services-section {
      background-color: #111;
      padding: 70px 10%;
      text-align: center;
    }

    .services-section h2 {
      font-size: 2.2rem;
      font-weight: 600;
      margin-bottom: 40px;
      color: #d4af37;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .services-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .service-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 15px;
      padding: 30px 20px;
      cursor: cell;
      transition: all 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
      border-color: #d4af37;
    }

    .service-card i {
      font-size: 2.5rem;
      color: #d4af37;
      margin-bottom: 15px;
      transition: transform 0.3s ease;
    }

    .service-card:hover i {
      transform: scale(1.1);
    }

    .service-card h4 {
      font-size: 1.2rem;
      color: #d4af37;
      margin-bottom: 10px;
    }

    .service-card p {
      color: #bbb;
      font-size: 0.95rem;
    }

    /* 🖼️ CAROUSEL */
    .carousel {
      max-width: 1000px;
      margin: 60px auto;
      border-radius: 15px;
      overflow: hidden;
      border: 2px solid rgba(212, 175, 55, 0.3);
    }

    .carousel img {
      height: 400px;
      object-fit: cover;
    }

    /* FOOTER */
    .site-footer {
      background: #111;
      text-align: center;
      padding: 25px;
      border-top: 1px solid rgba(212, 175, 55, 0.2);
      color: #aaa;
      font-size: 0.9rem;
      margin-top: 50px;
    }


/* product grid */
.products-grid {
    padding: 24px 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.product-card {
    background: var(--card);
    border: 1px solid #b88a0090;
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    text-align: center;
    cursor: pointer;
}
.product-card:hover {
    transform: translateY(-10px) scale(1.01);
    transition: all 0.5s ease;


}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 8px;
}

/* product controls */
.controls {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    padding: 18px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.search {
    background: transparent;
    border: 1px solid #b88b00;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--text);
    min-width: 220px;
}

/* skeleton */
.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.skeleton {
    height: 260px;
    background: linear-gradient(90deg, #0b0b0b, #121213, #0b0b0b);
    border-radius: 10px;
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1
    }

    50% {
        opacity: .6
    }

    100% {
        opacity: 1
    }
}
/* Product Detail Page */
.product-detail {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
    padding: 40px;
}

.detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid gold;
    border-radius: 16px;
    padding: 30px;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.detail-left img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: 12px;
}

.detail-right {
    flex: 1;
    color: white;
}

.price {
    color: gold;
    font-size: 1.4rem;
    margin: 10px 0;
}

/* buttons */
.btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: #111;
    background: var(--text);
    border: none;
    cursor: pointer;
    font-weight: 700;
}

.btn.primary {
    background: var(--accent);
    color: #0b0b0b;
}

.btn.ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* footer */
.site-footer {
    padding: 26px 24px;
    text-align: center;
    color: var(--muted);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    margin-top: 40px;
}
.contact-form h1 {
    margin-left: 29vw;
}


/* faq */
/* .accordion-item {
    margin: 12px auto;
    max-width: 900px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.accordion-btn {
    width: 100%;
    text-align: left;
    padding: 14px 18px;
    background: transparent;
    color: var(--text);
    border: none;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-body {
    padding: 14px 18px;
    color: var(--muted);
    display: none;
} */

/* forms */
.form {
    max-width: 640px;
    margin: 20px auto;
    padding: 18px;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid #d4af37;
}

.form label {
    display: block;
    margin-bottom: 12px;
    color: var(--text);
    font-weight: 600;
}

.form input,
.form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    background: #070707;
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text);
    margin-top: 6px;
}

/* small helpers */
.muted {
    color: var(--muted);
}

.small {
    font-size: 13px;
}

/* responsiveness */
@media (max-width:1026px) {
    .contact-form h1 {
        margin-left: 20vw;
    }
}
@media (max-width:900px) {
    

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.show {
        display: block;
        right: 12px;
        top: 64px;
    }

    .contact-form h1 {
        margin-left: 10vw;
    }
    .hero {
        flex-direction: column;
        text-align: center;
      }

      .hero-left, .hero-right {
        max-width: 100%;
      }

      .hero-right {
        margin-top: 40px;
      }
}

@media (max-width:600px) {
    .carousel {
        width: 100%;
        height: auto;
    }

    .carousel-inner {
        width: 100%;
        height: auto;
    }

    .contact-form h1 {
        margin: 0px;
    }
}