/* =======================================
   INDEX PAGE SPECIAL STYLES
   Elegant Photography Booking Site Design
   Mobile-First with Orange Accent Theme
   ======================================= */

/* ---------------------------------------
   0. REASONS SECTION GLOW ON SCROLL (MOBILE)
--------------------------------------- */
@media (max-width: 899px) {
  .reasons__item {
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  }

  .reasons__item.in-view {
    box-shadow:
      0 0 30px rgba(237, 135, 45, 1),
      0 0 60px rgba(237, 135, 45, 0.8),
      0 0 90px rgba(237, 135, 45, 0.6),
      0 0 120px rgba(237, 135, 45, 0.4),
      inset 0 0 30px rgba(237, 135, 45, 0.2) !important;
    border-color: rgba(237, 135, 45, 1) !important;
    background: linear-gradient(
      135deg,
      rgba(237, 135, 45, 0.25),
      rgba(255, 163, 100, 0.2),
      rgba(237, 135, 45, 0.15)
    ) !important;
    transform: scale(1.02) !important;
  }

  /* Disable hover effects on mobile to prevent conflicts */
  .reasons__item:hover {
    background: linear-gradient(
      135deg,
      rgba(237, 135, 45, 0.25),
      rgba(255, 163, 100, 0.2),
      rgba(237, 135, 45, 0.15)
    ) !important;
    transform: scale(1.02) !important;
    border-color: rgba(237, 135, 45, 1) !important;
  }

  .reasons__item:not(.in-view):hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateX(5px) !important;
    border-color: var(--accent) !important;
    box-shadow: none !important;
  }
}

/* ---------------------------------------
   1. PHOTOGRAPHER PROFILE SECTION
--------------------------------------- */
.photographer-intro {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(17, 18, 20, 0.95) 0%, rgba(28, 28, 31, 0.95) 100%);
}

.photographer-intro__container {
  max-width: min(900px, 94vw);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.photographer-intro__card {
  background: rgba(30, 30, 33, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(237, 135, 45, 0.2);
  border-radius: 32px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 25px rgba(237, 135, 45, 0.15);
  position: relative;
  overflow: hidden;
}

/* Gradient shine effect */
.photographer-intro__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(237, 135, 45, 0.6),
    rgba(255, 163, 100, 0.8),
    rgba(237, 135, 45, 0.6),
    transparent
  );
}

.photographer-intro__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.photographer-intro__photo-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}

.photographer-intro__photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(237, 135, 45, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 40px rgba(237, 135, 45, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.photographer-intro__photo-wrapper:hover .photographer-intro__photo {
  transform: scale(1.05);
  border-color: rgba(237, 135, 45, 0.8);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 50px rgba(237, 135, 45, 0.5);
}

/* Circular glow ring animation */
.photographer-intro__photo-wrapper::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(237, 135, 45, 0.4),
    transparent 40%,
    transparent 60%,
    rgba(255, 163, 100, 0.4),
    transparent
  );
  animation: rotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photographer-intro__photo-wrapper:hover::before {
  opacity: 1;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.photographer-intro__details {
  flex: 1;
}

.photographer-intro__name {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: #f2f2f2;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #fff, #ffa364);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.photographer-intro__title {
  font-size: 0.95rem;
  color: rgba(237, 135, 45, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.photographer-intro__bio {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(242, 242, 242, 0.85);
  margin: 0 0 1.5rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.photographer-intro__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.photographer-intro__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(242, 242, 242, 0.7);
  transition: color 0.3s ease;
}

.photographer-intro__contact-item:hover {
  color: #ed872d;
}

.photographer-intro__contact-icon {
  width: 20px;
  height: 20px;
  color: #ed872d;
}

/* Desktop Layout */
@media (min-width: 768px) {
  .photographer-intro__card {
    padding: 3.5rem 3rem;
  }

  .photographer-intro__content {
    flex-direction: row;
    text-align: left;
    gap: 2.5rem;
  }

  .photographer-intro__photo-wrapper {
    width: 200px;
    height: 200px;
  }

  .photographer-intro__details {
    text-align: left;
  }

  .photographer-intro__bio {
    margin-left: 0;
    margin-right: 0;
  }

  .photographer-intro__contact {
    flex-direction: row;
    gap: 2rem;
    justify-content: flex-start;
  }
}

/* ---------------------------------------
   2. BOOKING POLICIES SECTION
--------------------------------------- */
.booking-policies {
  position: relative;
  padding: 4rem 0;
  background: var(--ink-2);
}

.booking-policies__header {
  text-align: center;
  margin-bottom: 1rem;
  padding: 0 1.25rem;
}

.booking-policies__pretitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(242, 242, 242, 0.5);
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.booking-policies__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #f2f2f2;
  margin: 0 0 3rem 0;
  letter-spacing: 0.02em;
}

.booking-policies__grid {
  max-width: min(1000px, 94vw);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.policy-card {
  background: rgba(30, 30, 33, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(237, 135, 45, 0.15);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(237, 135, 45, 0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.policy-card:hover::before {
  opacity: 1;
}

.policy-card:hover {
  transform: translateY(-8px);
  border-color: rgba(237, 135, 45, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(237, 135, 45, 0.25);
}

.policy-card__icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(237, 135, 45, 0.1);
  border: 2px solid rgba(237, 135, 45, 0.3);
  transition: all 0.4s ease;
}

.policy-card:hover .policy-card__icon-wrapper {
  background: rgba(237, 135, 45, 0.2);
  border-color: rgba(237, 135, 45, 0.6);
  transform: scale(1.1);
}

.policy-card__icon {
  width: 40px;
  height: 40px;
  color: #ed872d;
  transition: color 0.3s ease;
}

.policy-card:hover .policy-card__icon {
  color: #ffa364;
}

.policy-card__title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: #f2f2f2;
  margin: 0 0 0.75rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.policy-card__description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(242, 242, 242, 0.7);
  margin: 0;
}

/* Desktop Grid Layout */
@media (min-width: 640px) {
  .booking-policies__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 900px) {
  .booking-policies__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------------------------------------
   3. PHOTO GALLERY COLLAGE SECTION
--------------------------------------- */
.photo-showcase {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(28, 28, 31, 0.95) 0%, rgba(17, 18, 20, 0.95) 100%);
}

.photo-showcase__container {
  max-width: min(1100px, 94vw);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.photo-showcase__header {
  text-align: center;
  margin-bottom: 3rem;
}

.photo-showcase__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #f2f2f2;
  margin: 0 0 1rem 0;
  letter-spacing: 0.02em;
}

.photo-showcase__subtitle {
  font-size: 1.05rem;
  color: rgba(242, 242, 242, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.photo-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 80px;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}

.photo-collage__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  max-width: 100%;
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow:
      inset 0 0 20px rgba(237, 135, 45, 0.3),
      0 0 30px rgba(237, 135, 45, 0.4),
      0 0 60px rgba(237, 135, 45, 0.2);
  }
  50% {
    box-shadow:
      inset 0 0 30px rgba(237, 135, 45, 0.5),
      0 0 50px rgba(237, 135, 45, 0.6),
      0 0 80px rgba(237, 135, 45, 0.4);
  }
}

.photo-collage__item:hover {
  transform: translateY(-8px);
}

.photo-collage__image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  border-radius: 16px;
  position: relative;
  z-index: 0;
}

/* Snake-like glowing border that wraps the actual image */
.photo-collage__image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 3px;
  background: conic-gradient(
    from 0deg,
    rgba(237, 135, 45, 1),
    rgba(255, 163, 100, 0.9),
    rgba(237, 135, 45, 0.7),
    rgba(237, 135, 45, 0.5),
    rgba(237, 135, 45, 0.3),
    rgba(237, 135, 45, 0.15),
    rgba(237, 135, 45, 0.05),
    transparent,
    transparent,
    rgba(237, 135, 45, 0.05),
    rgba(237, 135, 45, 0.15),
    rgba(237, 135, 45, 0.3),
    rgba(237, 135, 45, 0.5),
    rgba(237, 135, 45, 0.7),
    rgba(237, 135, 45, 0.9),
    rgba(237, 135, 45, 1)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotateGlow 4s linear infinite;
  z-index: -1;
  pointer-events: none;
}

/* Deep glow shadow around the border */
.photo-collage__image::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 16px;
  background: inherit;
  filter: blur(15px);
  opacity: 0.6;
  z-index: -2;
  pointer-events: none;
  animation: rotateGlow 4s linear infinite;
  background: conic-gradient(
    from 0deg,
    rgba(237, 135, 45, 0.8),
    rgba(255, 163, 100, 0.6),
    rgba(237, 135, 45, 0.4),
    rgba(237, 135, 45, 0.2),
    rgba(237, 135, 45, 0.1),
    transparent,
    transparent,
    transparent,
    rgba(237, 135, 45, 0.1),
    rgba(237, 135, 45, 0.2),
    rgba(237, 135, 45, 0.4),
    rgba(255, 163, 100, 0.6),
    rgba(237, 135, 45, 0.8)
  );
}

.photo-collage__item:hover .photo-collage__image {
  transform: scale(1.05);
}

.photo-collage__item:hover .photo-collage__image::before {
  animation-duration: 2s;
}

.photo-collage__item:hover .photo-collage__image::after {
  animation-duration: 2s;
  filter: blur(20px);
  opacity: 0.9;
}

/* Mobile: Use same grid layout as desktop, just smaller */
.photo-collage__item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-collage__item:nth-child(2) {
  grid-column: span 1;
  grid-row: span 2;
}

.photo-collage__item:nth-child(3) {
  grid-column: span 1;
  grid-row: span 2;
}

.photo-collage__item:nth-child(4) {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-collage__item:nth-child(5) {
  grid-column: span 2;
  grid-row: span 2;
}

/* Tablet Layout */
@media (min-width: 640px) {
  .photo-collage {
    grid-auto-rows: 120px;
    gap: 0.75rem;
    padding: 0;
  }

  .photo-collage__item {
    overflow: visible;
    border-radius: 14px;
  }
}

/* Desktop Layout - Elegant Asymmetric Grid */
@media (min-width: 900px) {
  .photo-collage {
    grid-auto-rows: 180px;
    gap: 1.5rem;
  }

  .photo-collage__item {
    overflow: visible;
    border-radius: 16px;
  }
}

/* ---------------------------------------
   4. NEXT STEPS / CTA SECTION
--------------------------------------- */
.next-steps {
  position: relative;
  padding: 4rem 0;
  background: var(--ink-2);
}

.next-steps__container {
  max-width: min(900px, 94vw);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.next-steps__header {
  text-align: center;
  margin-bottom: 3rem;
}

.next-steps__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #f2f2f2;
  margin: 0 0 1rem 0;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.next-steps__subtitle {
  font-size: 1.05rem;
  color: rgba(242, 242, 242, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.next-steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-card {
  background: rgba(30, 30, 33, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(237, 135, 45, 0.15);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #ed872d, #ffa364);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

.step-card:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.step-card:hover {
  transform: translateX(8px);
  border-color: rgba(237, 135, 45, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(237, 135, 45, 0.2);
}

.step-card__number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(237, 135, 45, 0.2), rgba(255, 163, 100, 0.2));
  border: 2px solid rgba(237, 135, 45, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ed872d;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.step-card:hover .step-card__number {
  background: linear-gradient(135deg, rgba(237, 135, 45, 0.3), rgba(255, 163, 100, 0.3));
  border-color: #ed872d;
  transform: scale(1.1);
}

.step-card__title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: #f2f2f2;
  margin: 0 0 0.75rem 0;
  letter-spacing: 0.02em;
}

.step-card__description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(242, 242, 242, 0.75);
  margin: 0;
}

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

.next-steps__cta-text {
  font-size: 1.1rem;
  color: rgba(242, 242, 242, 0.8);
  margin: 0 0 1.5rem 0;
}

/* Desktop Layout */
@media (min-width: 768px) {
  .next-steps__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* ---------------------------------------
   5. SOCIAL PROOF / FOLLOW SECTION
--------------------------------------- */
.social-follow {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(28, 28, 31, 0.95) 0%, rgba(17, 18, 20, 0.95) 100%);
  border-top: 1px solid rgba(237, 135, 45, 0.1);
}

.social-follow__container {
  max-width: min(800px, 94vw);
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}

.social-follow__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #f2f2f2;
  margin: 0 0 1rem 0;
  letter-spacing: 0.02em;
}

.social-follow__subtitle {
  font-size: 1rem;
  color: rgba(242, 242, 242, 0.7);
  margin: 0 0 2rem 0;
}

.social-follow__links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-follow__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(30, 30, 33, 0.8);
  border: 1px solid rgba(237, 135, 45, 0.3);
  border-radius: 50px;
  color: #f2f2f2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.social-follow__link:hover {
  background: rgba(237, 135, 45, 0.2);
  border-color: #ed872d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(237, 135, 45, 0.3);
  color: #ffa364;
}

.social-follow__icon {
  width: 20px;
  height: 20px;
}

/* ---------------------------------------
   6. UTILITY CLASSES
--------------------------------------- */
.text-center {
  text-align: center;
}

.text-accent {
  color: #ed872d;
}

.text-gradient {
  background: linear-gradient(135deg, #ed872d, #ffa364);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Mobile Spacing Adjustments */
@media (max-width: 639px) {
  .photographer-intro,
  .booking-policies,
  .photo-showcase,
  .next-steps,
  .social-follow {
    padding: 3rem 0;
  }
}

/* ---------------------------------------
   7. SERVICE CARDS GLOW ENHANCEMENT
--------------------------------------- */
/* Add the rotating glow to service card images */
.card__media.circle {
  position: relative;
  overflow: visible !important;
}

.card__media.circle img {
  position: relative;
  z-index: 1;
  border-radius: 50%;
}

/* Snake-like rotating border for circular images */
.card__media.circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 4px;
  background: conic-gradient(
    from 0deg,
    rgba(237, 135, 45, 1),
    rgba(255, 163, 100, 0.9),
    rgba(237, 135, 45, 0.7),
    rgba(237, 135, 45, 0.5),
    rgba(237, 135, 45, 0.3),
    rgba(237, 135, 45, 0.15),
    rgba(237, 135, 45, 0.05),
    transparent,
    transparent,
    rgba(237, 135, 45, 0.05),
    rgba(237, 135, 45, 0.15),
    rgba(237, 135, 45, 0.3),
    rgba(237, 135, 45, 0.5),
    rgba(237, 135, 45, 0.7),
    rgba(237, 135, 45, 0.9),
    rgba(237, 135, 45, 1)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotateGlow 4s linear infinite;
  z-index: 0;
  pointer-events: none;
}

/* Deep glow shadow around circular images */
.card__media.circle::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
  animation: rotateGlow 4s linear infinite;
  background: conic-gradient(
    from 0deg,
    rgba(237, 135, 45, 0.8),
    rgba(255, 163, 100, 0.6),
    rgba(237, 135, 45, 0.4),
    rgba(237, 135, 45, 0.2),
    rgba(237, 135, 45, 0.1),
    transparent,
    transparent,
    transparent,
    rgba(237, 135, 45, 0.1),
    rgba(237, 135, 45, 0.2),
    rgba(237, 135, 45, 0.4),
    rgba(255, 163, 100, 0.6),
    rgba(237, 135, 45, 0.8)
  );
}

.card:hover .card__media.circle::before {
  animation-duration: 2s;
}

.card:hover .card__media.circle::after {
  animation-duration: 2s;
  filter: blur(25px);
  opacity: 0.9;
}
