/* ===== Reset & base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}
body, html {
  overflow-x: hidden!important;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  height: 110px; /* fixed height — bigger logo won't stretch the bar */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 20px;
  overflow: visible; /* lets a taller logo spill out without stretching */
}
.logo {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: 20px;
  flex-shrink: 0;
}
.logo img {
  height: 120px;
  width: auto;
  max-height: none;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-weight: 500;
  color: #333;
  font-size: 15px;
  padding: 8px 2px;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: #f7941d;
}
.has-dropdown {
  position: relative;
}
.caret {
  font-size: 11px;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
}
.dropdown li a:hover {
  background: #fdf1e0;
  color: #f7941d;
}

/* Second-level flyout (Trophies / Momentos) */
.has-submenu {
  position: relative;
}
.has-submenu > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.submenu-caret {
  font-size: 16px;
  color: #999;
}
.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: all 0.2s;
}
.has-submenu:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.has-submenu:hover > a,
.has-submenu.open > a {
  background: #fdf1e0;
  color: #e63946;
}
.submenu li a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
}
.submenu li a:hover {
  background: #fdf1e0;
  color: #f7941d;
}

.header-actions {
  display: flex;
  gap: 12px;
}
.call-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f47b20;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 30px;
  white-space: nowrap;
  transition: background 0.2s;
}
.call-btn:hover {
  background: #d9661a;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

/* ===== Hero (full-width banner slider) ===== */
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 6; /* fixed ratio so every slide is same height, no gaps */
  max-height: 600px;
  background: #000;
}
.hero-shadow{
    width:100%;
    line-height:0;
    margin-top:-2px;   /* gap remove */
    margin-bottom:30px;
    text-align:center;
}

.hero-shadow img{
    width:100%;
    display:block;
    height:auto;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the box, crops instead of leaving gaps/squish */
  object-position: center;
  display: block;
}
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.hero-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.hero-dots span.active {
  background: #f47b20;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.6);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
}
.hero-arrow.left {
  left: 20px;
}
.hero-arrow.right {
  right: 20px;
}

/* On smaller screens, a very wide banner gets too short if we keep 16:6 —
   switch to a taller ratio so text/logos baked into the image don't get
   cropped off too much. */
@media (max-width: 768px) {
  .hero {
    aspect-ratio: 4 / 3;
    max-height: 420px;
    object-fit: contain!important;
  }
}
@media (max-width: 480px) {
  .hero {
    aspect-ratio: 1 / 1;
    max-height: 160px;
    object-fit: contain !important;
  }
}

@media (min-width: 320px) and (max-width: 400px) {
  .hero {
    aspect-ratio: 1 / 1;
    max-height: 120px;
    object-fit: contain !important;
  }
}


@media (min-width: 401px) and (max-width: 767px) {
  .hero {
    aspect-ratio: 4 / 3;
    max-height: 190px;
    object-fit: contain !important;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .hero {
    aspect-ratio: 4 / 3;
    max-height: 320px;
    object-fit: contain !important;
  }
}
@media (min-width: 1101px) and (max-width: 1400px) {
  .hero {
    aspect-ratio: 4 / 3;
    max-height: 410px;
    object-fit: contain !important;
  }
}

.read-more-btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 32px;
    background:#d89210;
    color:#fff;
    font-size:14px;
    font-weight:500;
    text-decoration:none;
    border-radius:3px;
    transition:all .3s ease;
    box-shadow:0 2px 5px rgba(0,0,0,.15);
}

.read-more-btn:hover{
    background:#b87805;
    color:#fff;
}


/* ===== Section heading helper ===== */
.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Responsive section title */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 26px;
    margin-bottom: 25px;
  }
}
.section-title .accent {
  color: #e63946;
}
.section-title.boxed span {
  background: #1a56db;
  color: #fff;
  padding: 6px 18px;
}
.section-title.boxed span.alt {
  background: transparent;
  color: #1a56db;
}

/* ===== About ===== */
.about-section {
  padding: 70px 0;
}
.about-section .container {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}
.about-section .about-text {
  flex: 1;
  min-width: 280px;
}
.about-section .about-img {
  flex: 1;
  min-width: 280px;
}
.about-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
}
.about-text h2 .accent {
  color: #e63946;
}

.about-para{
  margin-bottom: 5px;
}

/* ===== Clients ===== */
.clients-section {
  background: #e9e9e9;
  padding: 60px 0;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 20px;
}
.clients-grid .client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  height: 100px;
}
.clients-grid .client-logo img {
  max-height: 75px;
  max-width: 100%;
}
/* Client logos - black & white by default, original color on hover */
.clients-grid .client-logo img {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.clients-grid .client-logo:hover img {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}
/* ===== Services ===== */
.services-section {
  padding: 70px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 30px;
}
.service-card {
  background: #e9e9e9;
  padding: 35px;
  border-radius: 6px;
}
.service-card .icon {
  margin-bottom: 16px;
  color: #222;
}
.service-card h3 {
  color: #f7941d;
  font-size: 22px;
  margin-bottom: 12px;
}
.service-card p {
  color: #555;
  font-size: 15px;
}

/* ===== Product categories ===== */
.categories-section {
  padding: 20px 0 70px;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.category-card img {
  margin: 0 auto 15px;
  max-height: 355px;
}
.category-card h3 {
  color: #e63946;
  font-size: 20px;
  font-weight: 600;
}

/* ===== How we work ===== */
.how-we-work {
  background: #0d0d0d;
  padding: 70px 0;
}
.how-we-work .section-title {
  color: #fff;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.step-card {
  background: #1c2536;
  padding: 35px 20px;
  border-radius: 6px;
  text-align: center;
  color: #c9d1e0;
}
.step-card.active {
  background: #2a3d8f;
  color: #fff;
}
.step-card h3 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 16px;
}
.step-card p {
  font-size: 14px;
}


/* ===== Footer ===== */
.site-footer {
  background: #6d7580;
  color: #f1f1f1;
  padding-top: 60px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer-col h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 20px;
}
.footer-col p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #e6e6e6;
}
.office-address {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.office-address svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}
.footer-links li a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #e6e6e6;
  transition: color 0.2s;
}
.footer-links li a:hover {
  color: #f7941d;
}
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.social-icons a:hover {
  background: #f7941d;
}
.subscribe-form {
  display: flex;
  margin-top: 16px;
}
.subscribe-form input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}
.subscribe-form button {
  background: #f47b20;
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}
.subscribe-form button:hover {
  background: #d9661a;
}
 
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
.footer-bottom a {
  color: #f7941d;
}

/* ===== Floating buttons ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 46px;
  height: 46px;
  background: #1a56db;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: none;
}
.scroll-top.show {
  display: block;
}

/* ===== Responsive / Offcanvas mobile menu ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1999;
}
/* .nav-overlay.active {
  display: block;
} */

.nav-close {
  display: none;
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #333;
}

@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    max-width: 80vw;
    height: 100vh;
    background: #fff;
    box-shadow: -6px 0 24px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    transition: right 0.3s ease;
    padding-top: 70px;
    overflow-y: auto;
  }
  .main-nav.offcanvas-open {
    right: 0;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 24px;
  }
  .main-nav ul li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  .main-nav a {
    display: block;
    padding: 14px 0;
  }
  .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 12px;
    display: none;
  }
  .has-dropdown.open .dropdown {
    display: block;
  }
  .has-submenu > .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 14px;
    display: none;
  }
  .has-submenu.open > .submenu {
    display: block;
  }
  .has-submenu:hover > a,
  .has-submenu.open > a {
    background: transparent;
  }
  .nav-close {
    display: block;
  }

  .mobile-toggle {
    display: block;
  }
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .header-actions {
    display: none;
  }
}
@media (max-width: 576px) {
  .clients-grid,
  .categories-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: 30px;
  }
}

/* ===== About Us page ===== */
.page-hero-space {
  height: 30px;
}

.history-section {
  padding: 20px 0 50px;
}
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 40px;
}
.history-headline {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.history-sub {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.history-right p {
  margin-bottom: 18px;
  color: #444;
  font-size: 15.5px;
}
.history-full-text p {
  margin-bottom: 18px;
  color: #444;
  font-size: 15.5px;
  text-align: left;
}

.quality-section {
  background: #f7f7f7;
  padding: 60px 0;
}
.quality-text {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: #444;
  font-size: 15.5px;
}

@media (max-width: 768px) {
  .history-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .history-headline {
    font-size: 27px;
  }
}

/* ===== Factory Gallery page ===== */
.gallery-section {
  padding: 40px 0 70px;
}
.gallery-heading {
  text-align: center;
  color: #e63946;
  font-weight: 800;
  font-style: italic;
  font-size: 42px;
  margin-bottom: 30px;
}
.gallery-unit-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 18px;
}
.gallery-unit-title.center {
  text-align: center;
}
.gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 45px;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .gallery-row {
    grid-template-columns: 1fr;
  }
}


/* Ensure dropdown items stack vertically */
.dropdown {
  display: block !important;   /* force block */
}

.dropdown li {
  display: block !important;   /* each item on new line */
  width: 100%;
}

/* Same for submenus */
.submenu {
  display: block !important;
}
.submenu li {
  display: block !important;
  width: 100%;
}

/* Fix mobile offcanvas as well */
@media (max-width: 992px) {
  .main-nav .dropdown li,
  .main-nav .submenu li {
    display: block !important;
  }
  /* IMPORTANT: don't force the dropdown/submenu itself to always show —
     only show it once its parent has the .open class from the tap-to-open JS */
  .main-nav .has-dropdown .dropdown,
  .main-nav .has-submenu .submenu {
    display: none !important;
  }
  .main-nav .has-dropdown.open > .dropdown,
  .main-nav .has-submenu.open > .submenu {
    display: block !important;
  }
}

 
/* ===== Product listing pages (Crystal/Acrylic/Imported Trophies etc.) ===== */
.product-listing {
  padding: 50px 0 70px;
}
.product-heading {
  text-align: center;
  color: #e63946;
  font-weight: 800;
  font-style: italic;
  font-size: 42px;
  margin-bottom: 40px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  text-align: center;
}
.product-item img {
  max-height: 380px;
  width: auto;
  margin: 0 auto 14px;
  object-fit: contain;
}
.product-code {
  color: #e63946;
  font-weight: 700;
  font-size: 17px;
}
 
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}


 
/* ===== Contact Us page ===== */
.contact-section {
  padding: 50px 0 70px;
}
.contact-heading {
  text-align: center;
  color: #e63946;
  font-weight: 800;
  font-style: italic;
  font-size: 42px;
  margin-bottom: 40px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}
.form-group .required {
  color: #e63946;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  background: #fafafa;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f7941d;
  background: #fff;
}
.form-group textarea {
  resize: vertical;
}
.submit-btn {
  background: #1a56db;
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 30px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.submit-btn:hover {
  background: #143fad;
}
 
.contact-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.map-embed {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.contact-address {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #444;
  font-size: 15px;
}
.contact-map-wrap p {
  color: #444;
  font-size: 15px;
}
 
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .map-embed {
    height: 260px;
  }
}