/* ===== BANNER ===== */
    .page-banner {
      width: 100%;
      height: 500px;
      background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1544967082-d9d25d867d66?q=80&w=1887&auto=format&fit=crop');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .banner-content {
      text-align: center;
      color: white;margin-top: 50px;
    }
    
    .banner-content h1 {
      font-weight: 200;
      letter-spacing: 12px;
      text-transform: uppercase;
      border: 2px solid white;
      padding: 1rem 3rem;
    }
    
    /* ===== SECTION TITLE ===== */
    .section-title {
      font-size: 2rem;
      font-weight: 200;
      text-transform: uppercase;
      letter-spacing: 8px;
      text-align: center;
      margin: 4rem 0 3rem;
      position: relative;
    }
    
    .section-title:after {
      content: '';
      display: block;
      width: 60px;
      height: 1px;
      background: #111;
      margin: 1rem auto 0;
    }
    
    /* ===== CONTACT CARDS ===== */
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin: 2rem 0;
    }
    
  .contact-card {
  border: 1px solid #111;
  padding: 10px 10px 20px 10px;
  text-align: center;
  transition: all 0.3s ease;
}
    
    .contact-card:hover {
      background: #111;
      color: white;
    }
    
    .contact-card:hover .contact-icon,
    .contact-card:hover h3,
    .contact-card:hover p {
      color: white;
    }
    
    .contact-card:hover .contact-link {
      border-color: white;
      color: white;
    }
    
    .contact-icon {
      font-size: 2.5rem;
      color: #111;
      margin-bottom: 1rem;
    }
    
    .contact-card h3 {
      font-size: 1.4rem;
      font-weight: 300;
      letter-spacing: 2px;
      margin-bottom: 0.8rem;
    }
    
    .contact-card p {
      color: #666;
      margin-bottom: 1.5rem;
      font-size: 0.85rem;
    }
    
    .contact-link {
      display: inline-block;
      padding: 0.6rem 1.5rem;
      border: 1px solid #111;
      text-decoration: none;
      color: #111;
      font-size: 0.8rem;
      letter-spacing: 1px;
    }
    
    /* ===== MAIN CONTACT ROW ===== */
    .contact-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin: 3rem 0;
    }
    
    /* ===== LEFT COLUMN - MAP WITH ADDRESS ONLY ===== */
    .map-column {
      border: 1px solid #111;
    }
    
    .map-container {
      height: 300px;
      background: #111;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid #111;
    }
    
    .map-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.7);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: white;
    }
    
    .map-pin {
      font-size: 3rem;
      margin-bottom: 1rem;
      animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    
    .map-address {
      text-align: center;
    }
    
    .map-address strong {
      font-size: 2rem;
      font-weight: 300;
      letter-spacing: 4px;
      display: block;
      margin-bottom: 0.5rem;
    }
    
    .map-address span {
      color: #ccc;
      font-size: 1rem;
      letter-spacing: 2px;
    }
    
    .map-grid {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
      background-size: 30px 30px;
    }
    
    /* ===== CONTACT INFO - ONLY PHONE & EMAIL ===== */
    .contact-info-compact {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      background: #fff;
    }
    
    .contact-info-item {
      padding: 40px;
      text-align: center;
      border-right: 1px solid #111;
      transition: all 0.3s ease;
    }
    
    .contact-info-item:last-child {
      border-right: none;
    }
    
    .contact-info-item:hover {
      background: #f8f8f8;
    }
    
    .contact-info-item i {
      font-size: 1.3rem;
      color: #111;
      margin-bottom: 0.3rem;
    }
    
    .contact-info-item .label {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #777;
      margin-bottom: 0.2rem;
    }
    
    .contact-info-item .value {
      font-size: 1rem;
      font-weight: 400;
    }
    
    .contact-info-item .value a {
      color: #111;
      text-decoration: none;
      border-bottom: 1px dotted #ccc;
    }
    
    .contact-info-item .value a:hover {
      border-bottom: 1px solid #111;
    }
    
    /* ===== RIGHT COLUMN - FORM (COMPACT) ===== */
    .form-column {
      border: 1px solid #111;
      padding: 1.8rem;
      background: #fff;
      display: flex;
      flex-direction: column;
    }
    
    .form-header {
      margin-bottom: 1.5rem;
    }
    
    .form-header h3 {
      font-size: 1.5rem;
      font-weight: 200;
      letter-spacing: 4px;
      margin-bottom: 0.2rem;
    }
    
    .form-header p {
      color: #777;
      font-size: 0.8rem;
      letter-spacing: 1px;
    }
    
    /* Two column layout for name and email */
    .form-row-duo {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    
    .form-group {
      margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.7rem 0;
      border: none;
      border-bottom: 1px solid #ddd;
      font-size: 0.9rem;
      transition: all 0.3s;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-bottom-color: #111;
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #999;
      font-weight: 300;
      font-size: 0.9rem;
    }
    
    textarea {
      resize: vertical;
      min-height: 80px;
    }
    
    .submit-btn {
      background: #111;
      border: 1px solid #111;
      color: white;
      padding: 0.8rem;
      width: 100%;
      font-size: 0.85rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 0.5rem;
    }
    
    .submit-btn:hover {
      background: white;
      color: #111;
    }
    
    /* ===== SOCIAL STRIP ===== */
    .social-strip {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin: 3rem 0;
      padding: 1.5rem 0;
      border-top: 1px solid #111;
      border-bottom: 1px solid #111;
    }
    
    .social-strip a {
      width: 40px;
      height: 40px;
      border: 1px solid #111;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #111;
      text-decoration: none;
      transition: all 0.3s;
      border-radius: 50%;
      font-size: 1rem;
    }
    
    .social-strip a:hover {
      background: #111;
      color: white;
      transform: scale(1.1);
    }
    
   
    
    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .contact-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    
    @media (max-width: 600px) {
      .contact-grid { grid-template-columns: 1fr; }
      .contact-info-compact { grid-template-columns: 1fr; }
      .contact-info-item { border-right: none; border-bottom: 1px solid #111; }
      .contact-info-item:last-child { border-bottom: none; }
      .form-row-duo { grid-template-columns: 1fr; gap: 0; }
      .footer-grid { grid-template-columns: 1fr; }
    }
    /* responsive */
        @media screen and (max-width:1400px) {

        }
        @media screen and (min-width:1200px) and   (max-width:1399.98px) {
   
        }
        @media screen and (min-width:992px) and   (max-width:1199.98px) {

        }
        @media screen  and (min-width:768px) and (max-width:991.98px) {

        }
        @media screen and (min-width:576px) and (max-width:767.98px) {


        }
        @media screen  and (min-width:381px) and (max-width:575.98px){
    .banner-content h1 {
   letter-spacing: 2px;
  padding: 1rem 2rem;
  font-size: 20px;
}
.section-title {
  font-size: 2rem;
  letter-spacing: 8px;
  margin: 2rem 0 2rem;
}
.contact-icon {
  font-size: 25px;
}
.contact-card h3 {
  font-size: 14px;
}
.contact-info-item {
  padding: 25px;
}
        }
        @media screen and (min-width:320px) and (max-width:380.98px) {
 .banner-content h1 {
   letter-spacing: 2px;
  padding: 1rem 2rem;
  font-size: 20px;
}
.section-title {
  font-size: 2rem;
  letter-spacing: 8px;
  margin: 2rem 0 2rem;
}
.contact-icon {
  font-size: 25px;
}
.contact-card h3 {
  font-size: 14px;
}
.contact-info-item {
  padding: 25px;
}
        }