/* ============================================================
   Shree Ganesh Dry Cleaners — Unified Stylesheet
   Dark | Gold | Premium | Mobile-First | SEO-Optimized
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #0b0f1a;
  --primary-light: #131a2e;
  --secondary: #1a2540;
  --accent: #c9a84c;
  --accent-hover: #b8922f;
  --gold: #c9a84c;
  --white: #ffffff;
  --text: #e2e8f0;
  --text-muted: #b0bdd4;
  --text-dark: #0f172a;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1260px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--primary);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); color: var(--white); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--accent); }
h3 { font-size: 1.2rem; color: var(--white); }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 6%; }

.section {
  padding: clamp(50px, 8vw, 100px) 6%;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 55px);
}

.section-header h2 {
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1rem;
}

.section-accent {
  background: var(--primary-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.divider {
  width: 70px; height: 3px;
  background: var(--accent);
  margin: 12px auto 16px;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: clamp(12px, 1.5vw, 16px) clamp(20px, 2.5vw, 32px);
  border-radius: 6px;
  font-weight: 600; font-size: 0.9rem;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-gold {
  background: var(--accent);
  color: var(--primary);
}

.btn-gold:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--accent);
  transform: translateY(-2px);
}


.btn-block {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ---------- Navigation ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11, 15, 26, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  padding: 0 clamp(16px, 6%, 80px);
}

.nav-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--white);
}

.brand-logo {
  width: 56px; height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.logo-text { line-height: 1.15; }

.logo-title {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
}

.logo-subtitle {
  display: block;
  color: var(--accent);
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-menu {
  display: flex; align-items: center; gap: clamp(15px, 2.5vw, 28px);
}

.nav-link {
  color: var(--text);
  font-size: 0.9rem; font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu-btn {
  display: none;
  background: none; border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px;
}

/* ---------- Cards ---------- */
.card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: var(--transition);
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(201, 168, 76, 0.1);
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

/* ---------- Grid Layouts ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 85vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, rgba(11, 15, 26, 0.82), rgba(11, 15, 26, 0.88)),
              var(--hero-bg, url('../images/hero-bg.jpg'));
  background-size: cover; background-position: center;
  padding: 120px 6% 80px;
}

.hero-content {
  max-width: 720px;
}

.hero .tagline {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(201, 168, 76, 0.15);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.hero h1 {
  margin-bottom: 16px;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 550px;
}

.hero-buttons {
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* ---------- Stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat-item .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
}

.stat-item .stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* ---------- Service Cards Large ---------- */
.service-card-lg {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.service-card-lg:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card-lg .icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(201, 168, 76, 0.1);
  color: var(--accent);
  font-size: 1.8rem;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.service-card-lg:hover .icon-wrap {
  background: var(--accent);
  color: var(--primary);
}

.service-card-lg h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.service-card-lg .price-tag {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-card-lg .card-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.service-card-lg .card-link:hover {
  color: var(--white);
}

/* ---------- Image Wrapper ---------- */
.img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--secondary);
  border: 1px solid var(--border);
}

.cover-media {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.img-wrapper:hover .cover-media {
  transform: scale(1.06);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--secondary);
  border: 1px solid var(--border);
}

.gallery-item .cover-media {
  transition: transform 0.5s ease;
}

.gallery-item:hover .cover-media {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* ---------- Price Table ---------- */
.price-table {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row .item-name {
  font-weight: 500;
  color: var(--white);
  font-size: 0.9rem;
}

.price-row .item-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.price-row-header {
  background: var(--accent);
  color: var(--primary);
  padding: 16px 24px;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---------- Reviews ---------- */
.review-card {
  padding: 28px 24px;
}

.review-card .stars {
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.review-card .review-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 10px;
  font-style: italic;
}

.review-card .reviewer {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  font-family: inherit;
  text-align: left;
  padding: 18px 24px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  user-select: none;
  outline: none;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--accent);
  font-size: 0.8rem;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text);
  font-size: 1rem;
  padding: 0 24px;
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* ---------- Contact ---------- */
.contact-card {
  padding: 30px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  margin-bottom: 10px;
  transition: var(--transition);
}

.contact-link:hover {
  border-color: var(--accent);
  background: rgba(201, 168, 76, 0.05);
}

.contact-link i {
  font-size: 1.3rem;
  color: var(--accent);
  width: 24px;
  text-align: center;
}

.contact-link strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.contact-link span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 30px 0;
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--accent), #b8922f);
  text-align: center;
  padding: clamp(40px, 6vw, 60px) 6%;
  border-radius: var(--radius-lg);
  margin: 0 6% 60px;
}

.cta-banner h2 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.cta-banner p {
  color: var(--primary);
  opacity: 0.85;
  margin-bottom: 20px;
}

.cta-banner .btn {
  background: var(--primary);
  color: var(--accent);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 100px 6% 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  margin: 0 6px;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: 100px 6% 60px;
  text-align: center;
  background: var(--primary-light);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ---------- Blog ---------- */
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.blog-card .blog-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card .blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-card .blog-content {
  padding: 20px;
}

.blog-card .blog-content h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.blog-card .blog-content h3 a:hover {
  color: var(--accent);
}

.blog-card .blog-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.blog-card .blog-content .read-more {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ---------- Process Steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}

.process-step .step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(201, 168, 76, 0.15);
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  margin: 0 auto 14px;
  border: 2px solid rgba(201, 168, 76, 0.3);
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}


/* ---------- Floating Buttons ---------- */
.float-wa {
  position: fixed; right: 20px; bottom: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  z-index: 2000;
  font-size: 1.5rem;
  transition: var(--transition);
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.float-call {
  position: fixed; right: 20px; bottom: 96px;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
  z-index: 2000;
  font-size: 1.2rem;
  transition: var(--transition);
}

.float-call:hover {
  transform: scale(1.1);
}

.float-dir {
  position: fixed; right: 20px; bottom: 160px;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
  background: #4285f4;
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
  z-index: 2000;
  font-size: 1.2rem;
  transition: var(--transition);
}

.float-dir:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(66, 133, 244, 0.55);
}

/* ---------- Footer ---------- */
footer {
  background: var(--primary);
  border-top: 1px solid var(--border);
  padding: clamp(40px, 6vw, 60px) 6%;
  text-align: center;
}

footer .footer-logo {
  width: 80px; height: 80px;
  margin: 0 auto 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

footer h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

footer .footer-links {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 20px;
  margin: 20px 0;
}

footer .footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

footer .footer-links a:hover {
  color: var(--accent);
}

footer .footer-bottom {
  color: var(--text-muted);
  font-size: 0.8rem;
  opacity: 0.65;
  margin-top: 20px;
}

/* ---------- Fade In Animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero {
    min-height: 70vh;
    padding-top: 100px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header {
    height: 64px;
  }

  .nav-inner {
    height: 64px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 64px; left: 6%; right: 6%;
    background: rgba(11, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 0 0 14px 14px;
    flex-direction: column;
    padding: 16px 0;
    display: none;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    padding: 12px 28px;
    width: 100%;
  }

  .nav-link::after {
    display: none;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 50px 5%;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .cta-banner {
    margin: 0 5% 40px;
  }

  .breadcrumb {
    padding: 90px 5% 14px;
  }

  .page-hero {
    padding: 80px 5% 40px;
  }

  .map-wrap iframe {
    height: 260px;
  }

  .float-call {
    right: 12px; bottom: 84px;
  }

  .float-dir {
    right: 12px; bottom: 148px;
  }

  .float-wa {
    right: 12px; bottom: 16px;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: 46px; height: 46px;
  }

  .logo-title {
    font-size: 0.95rem;
  }

  .logo-subtitle {
    font-size: 0.55rem;
    letter-spacing: 2px;
  }

  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-badges {
    gap: 10px;
  }
}

/* ---------- Contact Page Layout ---------- */

.image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-center {
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

/* ---------- Footer Grid (Contact Page) ---------- */
.site-footer {
  background: var(--primary);
  border-top: 1px solid var(--border);
  padding: clamp(40px, 6vw, 60px) 6%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: left;
}

.footer-col h4 {
  color: var(--accent);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.footer-col p,
.footer-col a {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

/* ---------- Utility Classes ---------- */
.hidden {
  display: none !important;
}

.visible {
  opacity: 1 !important;
  visibility: visible !important;
}
