/* style.css - Shared Styles for All Pages */

/* ==== Global Reset & Base Styles ==== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ==== Header ==== */
header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1rem 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-placeholder {
  width: 150px;
  height: 40px;
  background: #e9ecef;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  color: #555;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
nav a {
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}
nav a:hover {
  color: #007bff;
}

/* ==== Main Content ==== */
main {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}
.page-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #222;
}

/* ==== Contact Form ==== */
.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.form-group {
  margin-bottom: 1.5rem;
}
label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #444;
}
input,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ced4da;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}
textarea {
  resize: vertical;
  min-height: 120px;
}
.btn-submit {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}
.btn-submit:hover {
  background: #0056b3;
}

/* ==== Privacy Page Specific ==== */
.privacy-content {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.privacy-content h2 {
  margin: 1.5rem 0 0.75rem;
  color: #222;
  font-size: 1.35rem;
}
.privacy-content p,
.privacy-content li {
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
}
.privacy-content ul {
  padding-left: 1.5rem;
}
.contact-info {
  margin-top: 1.5rem;
  font-weight: 500;
}
.contact-info a {
  color: #007bff;
}

/* ==== Footer ==== */
footer {
  background: #343a40;
  color: #adb5bd;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 4rem;
  font-size: 0.9rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-links {
  margin-top: 1rem;
}
.footer-links a {
  color: #adb5bd;
  margin: 0 0.75rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #fff;
}

/* ==== Responsive ==== */
@media (max-width: 576px) {
  .header-inner {
    flex-direction: column;
    gap: 1rem;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  .contact-form,
  .privacy-content {
    padding: 2rem 1.5rem;
  }
}

/* ==== Hero Section ==== */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 6rem 1.5rem;
  text-align: center;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero h1 span {
  color: #ffd43b;
}
.subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.btn-primary {
  display: inline-block;
  background: #ffd43b;
  color: #333;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 212, 59, 0.4);
}
.btn-primary:hover {
  background: #f1c40f;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 212, 59, 0.5);
}

/* ==== Features Section ==== */
.features {
  padding: 4rem 1.5rem;
  background: #fff;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #222;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  background: #f8f9fa;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #222;
}
.feature-card p {
  color: #555;
  font-size: 0.95rem;
}

/* ==== CTA Section ==== */
.cta {
  background: #007bff;
  color: #fff;
  text-align: center;
  padding: 4rem 1.5rem;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* ==== Responsive Adjustments ==== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero {
    padding: 4rem 1.5rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
}

.logo {
  width: 70px;
  height: 70px;
}

.logo img {
  width: 100%;
  height: 100%;
}
