/* banner */
.banner {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background: linear-gradient(rgba(50, 50, 50, 0.8), rgba(19, 43, 76, 0.9)),
    url("/img/CONTACT\ US.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;

  padding-bottom: 30px;
}
section {
    position: relative;
        width: 100%;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        color: white;

}

.bg {
  position: absolute;
  width: 100%;
  min-height: 100%;
  background: #545353;
  
  justify-content: center;
  align-items: center;
    display: flex;
    
  
}

.papper {
  position: absolute;
inset: 0;
  background: url(/img/WALL\ BG.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: lighten;
  filter: brightness(1.1);
    z-index: 1;
}
.contact-info {
    position: relative;
        z-index: 2;
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
        text-align: center;
        color: white;
}

.contact-info h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-info h1 span {
  color: #ff6b35;
  /* Using your accent color */
  font-weight: 700;
}

.contact-info .subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  font-weight: 300;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.method {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
    
    
}

.method:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.method-icon {
  font-size: 2rem;
  color: var(--primary);
  /* Accent color */
  margin-bottom: 1rem;
}

.method-details {
  text-align: center;
}

.method h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 1rem;
  position: relative;
}

.method h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 40px;
  height: 2px;
  background: #ff6b35;
}

.method p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: rgba(250, 241, 241, 0.9);
  line-height: 1.5;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .bg {
        background-attachment: scroll;
    }

    .contact-methods {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
          "method1 method2"
          "method3 method3";
        justify-items: center;
      }
    
      .method:nth-child(1) {
        grid-area: method1;
      }
    
      .method:nth-child(2) {
        grid-area: method2;
      }
    
      .method:nth-child(3) {
        grid-area: method3;
        width: 60%;
      }
    }
    

@media (max-width: 576px) {
    .contact-methods {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .method:nth-child(3) {
        grid-column: span 1;
        width: 100%;
    }

    .method {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .method:last-child {
        border-bottom: none;
    }
}

/* Very small screens */
@media (max-width: 400px) {
    .contact-info {
        padding: 2rem 1rem;
    }

    .contact-methods {
        width: 100%;
    }
}