/* GLOBAL & RESET */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  display: flex;
  flex-direction: column;
}

/* NAVBAR */
.custom-navbar {
  padding: 12px 20px;
  min-height: 60px;
  background: linear-gradient(to right, #17acd1, #17acd1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 50%;
  margin-left: 10px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.navbar-title {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-left: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* LINKS */
a {
  text-decoration: none;
  color: inherit;
}

/* CONTACT SECTION */
#contact {
  background-color: #f8f9fa;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
  text-align: center;
}

.owner-details {
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 30px 40px;
  border-radius: 12px;
  margin-bottom: 40px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.owner-details p {
  margin: 10px 0;
  font-size: 1.05rem;
  color: #333;
}

#contact form {
  max-width: 600px;
  width: 100%;
  text-align: left;
}

#contact .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  display: block;
}

#contact .form-control {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 12px 16px;
  font-size: 1rem;
  box-shadow: none;
  transition: border-color 0.3s ease;
  width: 100%;
  margin-bottom: 20px;
}

#contact .form-control:focus {
  border-color: #007bff;
  outline: none;
}

#contact textarea.form-control {
  resize: none;
  min-height: 150px;
}

#contact .btn-primary {
  padding: 12px 40px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 30px;
  background-color: #007bff;
  border: none;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}

#contact .btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 123, 255, 0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #contact h2 {
    font-size: 2rem;
  }

  .owner-details,
  #contact form {
    padding: 20px;
  }
}

/* MAIN CONTENT WRAPPER TO PUSH FOOTER */
.main-content {
  flex: 1;
}

/* FOOTER - Styled like Hiraj Page */
.footer {
  background-color: #1c1c1c;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  color: #17acd1;
}

