:root {
    --black: #0c0c0c;
    --dark: #111;
    --white: #ffffff;
    --gold: #c9a14a;
    --gray: #888;
    --radius: 14px;
    --transition: all 0.35s ease;
}

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 88px;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    
    z-index: 1000;
}

.Elite_Pro_Logo {
    height: 80px;
}

.nav-list {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav-list a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--gold);
}

.menu {
    display: none;
    font-size: 35px;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}

/* ================= MOBILE NAV ================= */
.mobile-nav {
    position: fixed;
    top: 88px;
    width: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 30px 20px;
    text-align: center;
}

.mobile-nav li {
    margin: 22px 0;
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 14px;
}

/* ================= IMG Banner HERO ================= */
/* ===== HERO SECTION ===== */

.hero{
    position: relative;
    width: 100%;
    height: clamp(420px, 85vh, 1000px); /* perfect scaling */
    overflow: hidden;
}

/* HERO IMAGE */
.hero img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* ===== ULTRA LARGE SCREENS (4K+) ===== */
@media (min-width: 1920px){
    .hero{
        height: 95vh;
    }
}

/* ===== TABLET ===== */
@media (max-width: 1024px){
    .hero{
        height: 70vh;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px){
    .hero{
        height: 55vh;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px){
    .hero{
        height: 45vh;
    }
}

/* ================= VIDEO Banner ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hero section */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000; /* fallback background */
}

/* Hero video */
.hero-video {
  width: 100%;
  height: auto; /* keep aspect ratio */
  display: block;
}


/* Hero content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 0 20px;
}



/* Responsive for tablets & mobile (unchanged) */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }
}

/* Large screen support (4K / UHD / >2560px width) */
@media (min-width: 2560px) {
  .hero-content h1 {
    font-size: 5rem; /* larger heading for 4K */
  }

  .hero-content p {
    font-size: 2rem; /* larger paragraph text */
  }

  .hero-video {
    max-height: 1440px; /* prevent extremely tall video stretching */
  }
}


/* ================= PRODUCTS ================= */
.product-section {
    padding: 140px 80px;
}

.section-heading {
    text-align: center;
    margin-bottom: 80px;
}

.section-heading h2 {
    font-size: 42px;
}

.line {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 22px auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: var(--dark);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.content {
    padding: 28px;
    text-align: center;
}

.content h3 {
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 2px;
}

.btn {
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    margin: 0 6px;
}

.btn.outline {
    border: 2.0px solid var(--gold);
    color: var(--gold);
}

.btn.solid {
    background: var(--gold);
    color: var(--black);
}

/* =================----------------------- ABOUT ----------------================= */
/* ================= ABOUT SECTION ================= */
.about-elite {
  background: #0b0b0b;
  padding: 100px 8%;
  color: #ffffff;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1400px;
  margin: auto;
}

/* ================= IMAGE ================= */
.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(201,161,74,0.35));
}

/* ================= CONTENT ================= */
.about-content {
  flex: 1.2;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffffff;
}

.about-content h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #c9a14a;
  margin-top: 10px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #cccccc;
  margin-bottom: 18px;
}

.about-content strong {
  color: #c9a14a;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .about-container {
    gap: 50px;
  }

  .about-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2::after {
    margin: 10px auto 0;
  }

  .about-image img {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .about-elite {
    padding: 70px 6%;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-content p {
    font-size: 15px;
  }
}

/* =================------------------------------------PARTNER -----------------------------------================= */

/* ================= ULTRA ELITE PARTNER ================= */
.partner-section.elite {
  background: radial-gradient(circle at top, #111, #000);
  padding: 140px 8%;
  position: relative;
}

/* GOLD DIVIDER LINE */
.partner-section.elite::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 80px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201,161,74,0.7),
    transparent
  );
  transform: translateX(-50%);
}

/* ===== WRAPPER ===== */
.partner-wrapper {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 90px;
}

/* ===== IMAGE ===== */
.partner-visual {
  position: relative;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 45px 90px rgba(0,0,0,0.8);
  border: 1px solid rgba(201,161,74,0.35);
}

.partner-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK GOLD OVERLAY */
.partner-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.65),
    rgba(201,161,74,0.12)
  );
}

/* TAG */
.visual-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 8px 18px;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  background: #c9a14a;
  border-radius: 20px;
  z-index: 2;
}

/* ===== TEXT ===== */
.partner-text {
  color: #ffffff;
}

.partner-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  
}

.partner-text h2 {
  font-size: 42px;
  margin: 18px 0 28px;
  font-weight: 600;
}

/* LEAD */
.partner-text .lead {
  font-size: 17px;
  line-height: 1.9;
  color: #d6d6d6;
  margin-bottom: 30px;
}

.partner-text strong {
  color: #c9a14a;
}

/* FEATURES */
.partner-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.partner-features span {
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,161,74,0.35);
  color: #e8e8e8;
}

/* NOTE */
.partner-note {
  font-size: 15px;
  line-height: 1.9;
  color: #bdbdbd;
  border-left: 3px solid rgba(201,161,74,0.6);
  padding-left: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .partner-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .partner-visual {
    margin: auto;
  }

  .partner-text {
    text-align: center;
  }

  .partner-note {
    border-left: none;
    border-top: 3px solid rgba(201,161,74,0.6);
    padding-left: 0;
    padding-top: 20px;
  }

  .partner-features {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .partner-text h2 {
    font-size: 30px;
  }

  .partner-text .lead {
    font-size: 15px;
  }
}


/* ================= Map ================= */
/* ===== FULL SIZE LOCATION ===== */
.location-full {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  background: #000;
  overflow: hidden;
}

/* MAP */
.map-full {
  position: absolute;
  inset: 0;
}

.map-full iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) contrast(1.05) brightness(0.9);
}

/* DARK OVERLAY */
.map-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.75)
  );
  z-index: 1;
}

/* CONTENT */
.map-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.map-overlay span {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a14a;
}

.map-overlay h2 {
  font-size: 44px;
  font-weight: 500;
  margin: 18px 0 20px;
}

.map-overlay p {
  font-size: 16px;
  max-width: 420px;
  color: #d0d0d0;
  line-height: 1.8;
}

/* BUTTON */
.map-overlay a {
  margin-top: 34px;
  width: fit-content;
  padding: 14px 36px;
  border: 1px solid rgba(201,161,74,0.6);
  color: #c9a14a;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
}

.map-overlay a:hover {
  background: #c9a14a;
  color: #000;
}

.text-gold {
  color: #c9a14a;
  font-weight: 500;
}
.text-underline {
  position: relative;
  display: inline-block;
}

.text-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(201,161,74,0.6);
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .location-full {
    height: 75vh;
    min-height: 520px;
  }

  .map-overlay h2 {
    font-size: 30px;
  }

  .map-overlay p {
    font-size: 15px;
  }
}

/* ===== ---------------------WHY ELITE SECTION ------------------===== */
.why-elite {
  background: #000;
  padding: 140px 8%;
  color: #fff;
}

/* CONTAINER */
.why-container {
  max-width: 1400px;
  margin: auto;
}

/* HEADING */
.why-heading {
  max-width: 620px;
  margin-bottom: 90px;
}

.why-label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c9a14a;
}

.why-heading h2 {
  font-size: 46px;
  font-weight: 400;
  margin: 18px 0 26px;
  line-height: 1.2;
}

.why-heading p {
  font-size: 16px;
  line-height: 1.85;
  color: #d6d6d6;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

/* ITEM */
.why-item {
  position: relative;
  padding-left: 28px;
}

.why-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  background: #c9a14a;
}

.why-item h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 14px;
}

.why-item p {
  font-size: 15px;
  line-height: 1.8;
  color: #bdbdbd;
}

/* ===== TEXT HIGHLIGHTS (reuse from previous sections) ===== */
.text-gold {
  color: #c9a14a;
  font-weight: 500;
}

.text-underline {
  position: relative;
  display: inline-block;
}

.text-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(201,161,74,0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .why-elite {
    padding: 110px 6%;
  }

  .why-heading {
    margin-bottom: 70px;
  }

  .why-heading h2 {
    font-size: 32px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 480px) {
  .why-heading p,
  .why-item p {
    font-size: 14px;
  }
}
/* ========================================================================================================== */
/* SECTION */
.warranty-section {
    padding: clamp(60px, 8vw, 100px) 16px;
    background: linear-gradient(135deg, #0b0b0b, #111111);
}

.warranty-container {
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
.warranty-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
}

.warranty-label {
    font-size: 14px;
    letter-spacing: 2px;
    color: #cfa44a;
    font-weight: 500;
}

.warranty-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 700;
    margin-top: 12px;
}

/* CARD */
.warranty-content {
    background: #151515;
    border: 1px solid #222;
    padding: clamp(24px, 5vw, 50px);
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

/* TEXT */
.warranty-content p {
    color: #cccccc;
    font-size: 15px;
}

.intro-text {
    font-size: 16px;
}

.warranty-content h3 {
    margin-top: 32px;
    margin-bottom: 14px;
    font-size: 20px;
    color: #ffffff;
}

/* LISTS */
.list-main {
    padding-left: 20px;
    margin-bottom: 22px;
}

.list-main li {
    color: #bdbdbd;
    font-size: 14px;
    margin-bottom: 8px;
}

.list-sub {
    margin-top: 10px;
    padding-left: 20px;
}

/* FOOTER TEXT */
.warranty-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #222;
    font-size: 14px;
    color: #aaaaaa;
}

/* BUTTONS */
.warranty-actions {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.contact-btn,
.download-btn {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    min-width: 220px;
    transition: all 0.3s ease;
}

/* CONTACT */
.contact-btn {
    color: #cfa44a;
    border: 1px solid #cfa44a;
    background: transparent;
}

.contact-btn:hover {
    background: #cfa44a;
    color: #0b0b0b;
}

/* DOWNLOAD */
.download-btn {
    background: linear-gradient(135deg, #cfa44a, #e1b85c);
    color: #0b0b0b;
}

.download-btn:hover {
    transform: translateY(-3px);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablets */
@media (max-width: 992px) {
    .warranty-content h3 {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .warranty-actions {
        flex-direction: column;
        gap: 14px;
    }

    .contact-btn,
    .download-btn {
        width: 100%;
        min-width: unset;
    }

    .intro-text {
        font-size: 15px;
    }
}
/* ========================================================================================================================== */
/* CONTACT SECTION */
.contact-section {
    padding: clamp(70px, 8vw, 110px) 16px;
    background: linear-gradient(135deg, #0b0b0b, #111111);
    color: #ffffff;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-label {
    color: #cfa44a;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 500;
}

.contact-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin: 12px 0;
}

.contact-subtitle {
    color: #cccccc;
    font-size: 15px;
    max-width: 600px;
    margin: auto;
}

/* CONTENT */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #151515;
    border: 1px solid #222;
    border-radius: 18px;
    padding: clamp(30px, 5vw, 50px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

/* INFO */
.contact-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.contact-info p {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    color: #bdbdbd;
    font-size: 14px;
    margin-bottom: 10px;
}

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #0f0f0f;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #ffffff;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #cfa44a;
}

/* BUTTON */
.contact-btn {
    margin-top: 10px;
    padding: 14px;
    background: linear-gradient(135deg, #cfa44a, #e1b85c);
    border: none;
    border-radius: 50px;
    color: #0b0b0b;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* ================= FOOTER ================= */

/* FOOTER */
.elite-footer {
    background: #0b0b0b;
    color: #cccccc;
    padding: 70px 16px 20px;
    border-top: 1px solid #222;
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 16px;
}

.footer-container h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-container ul {
    list-style: none;
    padding: 0;
}

.footer-container li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-container a {
    color: #bdbdbd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-container a:hover {
    color: #cfa44a;
}

/* SOCIAL */
.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #222;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.footer-legal {
    margin-top: 8px;
    font-size: 13px;
}

.footer-legal span {
    margin: 0 6px;
}

/* BACK TO TOP */
#backToTop {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #cfa44a;
    color: #000;
    border: none;
    padding: 10px 14px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    display: none;
    z-index: 999;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    font-size: 26px;
    padding: 14px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    z-index: 999;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        align-items: center;
    }

    .footer-logo {
        margin: 0 auto 16px;
    }
}




/* FLOATING AI */
.ai-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}

/* BUTTON */
.ai-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #c9a14a, #e1b85c);
  color: #000;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

/* CHAT BOX */
.ai-box {
  position: absolute;
  bottom: 75px;
  left: 0;
  width: 320px;
  max-height: 460px;
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 18px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
}

/* HEADER */
.ai-header {
  background: #111;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #c9a14a;
  font-size: 14px;
  letter-spacing: 1px;
}

.ai-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* MESSAGES */
.ai-messages {
  padding: 16px;
  flex: 1;
  overflow-y: auto;
}

.ai-message {
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 85%;
}

.ai-message.bot {
  background: #1a1a1a;
  color: #fff;
}

.ai-message.user {
  background: #c9a14a;
  color: #000;
  margin-left: auto;
}

/* INPUT */
.ai-input {
  display: flex;
  border-top: 1px solid #222;
}

.ai-input input {
  flex: 1;
  padding: 12px 14px;
  background: #0b0b0b;
  border: none;
  color: #fff;
  outline: none;
}

.ai-input button {
  width: 50px;
  background: #c9a14a;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

/* QUICK QUESTIONS */
.ai-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.ai-quick button {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.ai-quick button:hover {
  background: #c9a14a;
  color: #000;
}


/* MOBILE */
@media (max-width: 480px) {
  .ai-box {
    width: 280px;
  }
}


/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 40px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 38px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu {
        display: block;
    }

    .hero-content {
        left: 6%;
        right: 6%;
        bottom: 12%;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .product-section,
    .elitepro-section,
    .partner-section {
        padding: 100px 24px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .elitepro-section,
    .partner-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .details p {
        margin: 0 auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .section-heading h2 {
        font-size: 30px;
    }
}
