/* =========================
       CSS Reset & Variables
    ========================= */
    :root {
      --primary: #8B4513;
      --secondary: #D4A574;
      --accent: #C19A6B;
      --dark: #1A1A1A;
      --light: #F9F5F0;
      --light-gray: #F0ECE5;
      --text: #333333;
      --white: #FFFFFF;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      --radius: 16px;
      --transition: all 0.3s ease;
    }

   .page-title {
      text-align: center;
      margin-top: 100px;
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                  url('https://i.imgur.com/RpQsh9U.jpg') center/cover no-repeat;
      color: var(--white);
      padding: 100px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }    .header{
        background-color: var(--light);
    }

    .page-title h1 {
      font-size: 3rem;
      margin-bottom: 15px;
    }

    .page-title p {
      font-size: 1.1rem;
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto;
    }

    /* =========================
       Contact Content
    ========================= */
    

    .contact-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }

    .contact-info h2 {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 25px;
      position: relative;
      display: inline-block;
    }

    .contact-info h2::after {
      content: '';
      position: absolute;
      width: 60%;
      height: 3px;
      background: var(--accent);
      bottom: -10px;
      left: 0;
    }

    .contact-details {
      margin-bottom: 40px;
    }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 25px;
    }

    .contact-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--secondary), var(--accent));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .contact-text h3 {
      font-size: 1.2rem;
      color: var(--primary);
      margin-bottom: 5px;
    }

    .contact-text p {
      color: #555;
    }

    .opening-hours {
      background: var(--white);
      padding: 25px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .opening-hours h3 {
      color: var(--primary);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hours-list {
      list-style: none;
    }

    .hours-list li {
      display: flex;
      justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px solid var(--light-gray);
    }

    .hours-list li:last-child {
      border-bottom: none;
    }

    .day {
      font-weight: 500;
    }

    .time {
      color: var(--primary);
      font-weight: 600;
    }

    .social-connect {
      margin-top: 30px;
    }

    .social-connect h3 {
      color: var(--primary);
      margin-bottom: 20px;
    }

    .social-links {
      display: flex;
      gap: 15px;
    }

    .social-link {
      width: 50px;
      height: 50px;
      background: var(--light-gray);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--primary);
      transition: var(--transition);
    }

    .social-link:hover {
      background: var(--primary);
      color: var(--white);
      transform: translateY(-5px);
    }

    /* Contact Form */
    .contact-form {
      background: var(--white);
      padding: 40px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .contact-form h3 {
      font-size: 1.8rem;
      color: var(--primary);
      margin-bottom: 25px;
      text-align: center;
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: var(--text);
    }

    .form-control {
      width: 100%;
      padding: 14px 18px;
      border: 1px solid var(--light-gray);
      border-radius: 10px;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      transition: var(--transition);
    }

    .form-control:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.2);
    }

    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }

    .submit-btn {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, var(--primary), #6B3410);
      color: var(--white);
      border: none;
      border-radius: 10px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(139, 69, 19, 0.2);
    }

    /* Map Section */
    .map-section {
      margin-bottom: 60px;
    }

    .map-section h2 {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 30px;
      text-align: center;
      position: relative;
      display: inline-block;
      left: 50%;
      transform: translateX(-50%);
    }

    .map-section h2::after {
      content: '';
      position: absolute;
      width: 60%;
      height: 3px;
      background: var(--accent);
      bottom: -10px;
      left: 20%;
    }

    .map-container {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      height: 500px;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }


    /* =========================
       Responsive Design
    ========================= */
    @media (max-width: 992px) {
      .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .page-title h1 {
        font-size: 2.5rem;
      }
      
      .map-container {
        height: 400px;
      }
    }


    @media (max-width: 768px) {
      
      .contact-form {
        padding: 30px 20px;
      }
      
      .section {
        padding: 60px 0;
      }
      
      .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
      }
    }

    @media (max-width: 576px) {
      .page-title h1 {
        font-size: 2rem;
      }
      
      .container {
        padding: 0 15px;
      }
      
     
      
      .map-container {
        height: 300px;
      }
      
      .contact-info h2,
      .map-section h2 {
        font-size: 2rem;
      }
    }



    /* Developer Section Styles */
.developer-section {
  background: var(--light);
  border-radius: var(--radius);
  padding: 50px;
  margin: 60px 0;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}

.developer-section h2 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 2.2rem;
}

.developer-section .subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.developer-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  border: 2px solid var(--secondary);
}

.team-intro {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--light-gray);
}

.developer-role {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.developer-bio {
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Developers Grid */
.developers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.developer-profile {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 25px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.developer-profile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.profile-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--white);
}

.developer-name {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 600;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--secondary);
}

.developer-contact-info {
  text-align: left;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.contact-line:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.contact-line i {
  color: var(--primary);
  font-size: 1.1rem;
  min-width: 20px;
  text-align: center;
}

.contact-line a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  word-break: break-all;
}

.contact-line a:hover {
  color: var(--primary);
}

.contact-line a[href^="tel:"] {
  color: var(--accent);
  font-weight: 500;
}

.contact-line a[href^="mailto:"] {
  color: var(--accent);
  font-weight: 500;
}

.team-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--light-gray);
}

.developer-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.team-note {
  color: var(--text-light);
  font-size: 0.95rem;
  font-style: italic;
}

/* Responsive styles for developer section */
@media (max-width: 992px) {
  .developers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .developer-section {
    padding: 30px 20px;
    margin: 40px 0;
  }

  .developer-card {
    padding: 30px 20px;
  }

  .developers-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .developer-profile {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .developer-section h2 {
    font-size: 1.8rem;
  }
  
  .profile-image {
    width: 70px;
    height: 70px;
    font-size: 35px;
  }
  
  .developer-name {
    font-size: 1.3rem;
  }
  
  .contact-line a {
    font-size: 0.9rem;
  }
}