/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    background: #111;
    color: #fff;
    overflow-x: hidden;
  }
  
  /* ===== Header & Navigation ===== */
  header {
    width: 100%;
    padding: 20px 40px;
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
  }
  
  .logo span {
    color: goldenrod;
  }
  
  .navbar {
    display: flex;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover,
  .nav-links li a.active {
    color: goldenrod;
  }
  
  /* Hamburger */
  .hamburger {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
  }
  
  /* ===== Contact Section ===== */
  .contact-section {
    padding: 120px 40px 60px;
    max-width: 1200px;
    margin: auto;
  }
  
  .contact-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .contact-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
  }
  
  .contact-header h1 span {
    color: goldenrod;
  }
  
  .intro-text {
    font-size: 1rem;
    margin-top: 10px;
    color: #ccc;
  }
  
  .contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  /* ===== Contact Info ===== */
  .contact-info {
    flex: 1;
    min-width: 280px;
    background: #fff;
    color: #000;
    padding: 30px;
    border-radius: 10px;
  }
  
  .contact-info h2 {
    margin-bottom: 10px;
  }
  
  .contact-info p {
    margin-bottom: 20px;
  }
  
  .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .info-item i {
    font-size: 1.5rem;
    color: goldenrod;
    margin-right: 15px;
  }
  
  .info-item p {
    margin: 0;
    font-weight: 600;
  }
  
  /* Remove underline from links in contact info */
  .contact-info a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  .contact-info a:hover {
    color: goldenrod;
  }
  
  /* Social Links */
  .social-links {
    margin-top: 20px;
  }
  
  .social-links a {
    color: #333;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: goldenrod;
  }
  
  /* ===== Contact Form ===== */
  .contact-form {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  .contact-form textarea {
    resize: none;
  }
  
  .btn {
    display: inline-block;
    background: goldenrod;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #b8860b;
  }
  
  /* ===== Footer ===== */
  footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: #fff;
    margin-top: 40px;
  }
  
  /* ===== Responsive Styles ===== */
  @media (max-width: 768px) {
    .nav-links {
      position: fixed;
      top: 70px;
      right: -100%;
      background: #000;
      flex-direction: column;
      width: 200px;
      padding: 20px;
      transition: right 0.3s ease;
      gap: 15px;
    }
  
    .nav-links.show {
      right: 0;
    }
  
    .hamburger {
      display: block;
    }
  
    .contact-container {
      flex-direction: column;
    }
  }
  