:root {
  --primary: #ffb800;
  --text-dark: #1e1e1e;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #fff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===========================
   HEADER
=========================== */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  /*color: var(--primary);*/
}

.logo img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}

/* --- Navigation --- */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.btn-primary {
  background: var(--primary);
  color: var(--text-dark);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #e5a700;
}

/* --- Mobile Menu Button --- */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

/* Modal */
/* Modal overlay */
.modal {
  background: white;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  /* hidden by default */
  /* dark overlay */
  z-index: 9999;
  /* ensures it appears above everything */
}

/* Modal content box */
.modal-content {
  padding: 24px 24px 16px;
  border-bottom: 1px solid #e5e7eb;
  top: 0;
  background: white;
  position: relative;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  /* just in case */
}

.modal-title-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.icon {
  color: #3b82f6;
  font-size: 24px;
  flex-shrink: 0;
}

.modal-title {
  font-size: 22px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #6b7280;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.close-btn:hover {
  color: #1f2937;
}

.modal-body {
  padding: 24px;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

.required {
  color: #ef4444;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: #1f2937;
  background: #f9fafb;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: white;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.helper-text {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

.info-box {
  background: #eff6ff;
  border-left: 3px solid #3b82f6;
  padding: 16px;
  border-radius: 6px;
  margin-top: 20px;
}

.info-box-title {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.info-box ul {
  list-style: none;
  padding-left: 0;
}

.info-box li {
  font-size: 13px;
  color: #4b5563;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.info-box li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  position: sticky;
  bottom: 0;
  background: white;
}

.btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-cancel {
  background: white;
  color: #374151;
  border: 1px solid #d1d5db;
}

.btn-cancel:hover {
  background: #f9fafb;
}

.btn-submit {
  background: #fbbf24;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.btn-submit:hover {
  background: #f59e0b;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}



/* ===========================
   HERO SECTION
=========================== */
.hero {
  background: linear-gradient(135deg, #007BFF, #0094FF);
  color: var(--white);
  text-align: center;
  padding: 6rem 1rem;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

/* ===========================
   SPECIALTY
=========================== */
.specialty {
  background: #fff;
  padding: 3rem 1rem;
}

.specialty-box {
  background: var(--bg-light);
  border-left: 5px solid var(--primary);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.specialty-box h2 {
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

/* ===========================
   SERVICES
=========================== */
.services {
  padding: 3rem 1rem;
  text-align: center;
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 10px;
  padding: 2rem 1rem;
  flex: 1 1 250px;
  max-width: 300px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}



/* Services*/
.fba-service-card,
.fbm-service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 30px 40px;
  max-width: 1200px;
  margin: auto;
  transition: transform 0.3s ease;
}

.fba-service-card:hover {
  box-shadow: 0 2px 6px #007BFF;
}

.fbm-service-card:hover {
  box-shadow: 0 2px 6px var(--primary);
}

.fba-service-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.fba-icon-box {
  background-color: #e8f1ff;
  padding: 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fba-icon-box svg {
  width: 38px;
  height: 38px;
  fill: #1a73e8;
}

.fba-service-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
}

.fba-service-card p.description,
.fbm-service-card p.description {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 30px;
}

.fba-service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 86px;
}

.fba-service-features div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #2f2f2f;
}

.fba-service-features svg {
  width: 20px;
  height: 20px;
  fill: #1a73e8;
  flex-shrink: 0;
}

.booking-card {

  background-color: #fff;
  border-left: 4px solid #1a73e8;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 30px 40px;
  max-width: 900px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-left: 14pc;
}

.booking-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #e8f1fe;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.booking-icon svg {
  width: 28px;
  height: 28px;
  stroke: #1a73e8;
  fill: none;
  stroke-width: 2;
}

.booking-content {
  flex: 1;
}

.booking-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.booking-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 25px;
}

.booking-content .btn {
  display: inline-block;
  background-color: #fbbc04;
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.booking-content .btn:hover {
  background-color: #f9a602;
  transform: translateY(-2px);
}

/* ================= SERVICE CARD ================= */
.services-card {
  background-color: #fffaf2;
  border: 2px solid #ffc107;
  border-radius: 10px;
  padding: 2rem;
  max-width: 950px;
  margin: 2rem auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.icon-box {
  background-color: #ffc107;
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(100%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.service-header h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  font-weight: 700;
}

.badge {
  background-color: #ffc107;
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 15px;
  margin-left: 10px;
}

.service-card p {
  color: #333;
  font-size: 1rem;
  margin: 1rem 0 1.5rem;
  line-height: 1.6;
}

/* Features Grid */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 86px;
}

.features div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #0056d2;
  font-weight: 500;
}

.features svg {
  width: 20px;
  height: 20px;
  fill: #1a73e8;
  flex-shrink: 0;
}

/* Pricing */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: #3b82f6;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1f2937;
}

.feature-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.pricing-section {
  background: white;
  border-radius: 12px;
  padding: 40px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pricing-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 40px;
}

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

thead {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

th {
  padding: 20px;
  text-align: left;
  color: white;
  font-weight: 600;
  font-size: 16px;
}

td {
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  color: #4b5563;
  font-size: 15px;
}

tbody tr {
  transition: background-color 0.2s ease;
}

tbody tr:hover {
  background-color: #f9fafb;
}

tbody tr:last-child td {
  border-bottom: none;
}

.price {
  color: #3b82f6;
  font-weight: 600;
  white-space: nowrap;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.main-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background: white;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
}

.service-list li {
  padding: 8px 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
  font-size: 18px;
}

.cta-section {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: #fbbf24;
  color: #1f2937;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.cta-button:hover {
  background: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(251, 191, 36, 0.5);
}

.cta-button:active {
  transform: translateY(0);
}

/* ===========================
   WHY CHOOSE US
=========================== */
.why {
  background: var(--bg-light);
  padding: 3rem 1rem;
  text-align: center;
}

.why-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 2rem 1rem;
  flex: 1 1 250px;
  max-width: 300px;
}

.why-card h3 {
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.faq-section {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-section p.subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e3e3e3;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border: 1px solid #1a73e8;
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background-color: #f3f6fb;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 22px;
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 22px 18px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  fill: #333;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  fill: #1a73e8;
}


/* ===========================
   FOOTER
=========================== */
.footer {
  background: linear-gradient(135deg, #007BFF, #0094FF);
  color: var(--white);
  padding-top: 3rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 0.8rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.socials a img {
  width: 22px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

/* ================= HERO ================= */
.about-hero {
  background: linear-gradient(180deg, #2196f3, #0d6efd);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* ================= OUR STORY ================= */
.our-story {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.our-story h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.our-story p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ================= MISSION & VALUES ================= */
.mission-values {
  background-color: #f7f9fc;
  padding: 60px 20px;
  text-align: center;
}

.mission-values h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-items: center;
}

.value-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  max-width: 350px;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card img {
  width: 45px;
  height: 45px;
  margin-bottom: 15px;
}

.value-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.value-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* ================= FOOTER ================= */
.footer {
  background-color: #0d6efd;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

/*COntact us*/
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Info Cards */
.info-cards {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.info-card {
  flex: 1;
  min-width: 250px;
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 28px;
  color: #3b82f6;
}

.info-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.info-subtitle {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 4px;
}

.info-text {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

/* Main Content */
.content-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.content-left,
.content-right {
  flex: 1;
  min-width: 300px;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

.required {
  color: #ef4444;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  color: #1f2937;
  background: #f9fafb;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: white;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Location Section */
.location-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.location-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.map-container {
  width: 100%;
  height: 300px;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 2px dashed #d1d5db;
}

.map-icon {
  font-size: 48px;
  color: #3b82f6;
  margin-bottom: 10px;
}

.map-text {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.map-subtext {
  font-size: 13px;
  color: #6b7280;
}

/* Shipment Box */
.shipment-box {
  background: #fffbeb;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #fbbf24;
}

.shipment-title {
  font-size: 15px;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 12px;
}

.shipment-text {
  font-size: 13px;
  color: #78350f;
  line-height: 1.6;
  margin-bottom: 15px;
}

.shipment-btn {
  width: 100%;
  padding: 12px;
  background: #fbbf24;
  color: #1f2937;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.shipment-btn:hover {
  background: #f59e0b;
}

/* Expectations List */
.expectations-box {
  margin-top: 25px;
}

.expectations-title {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.expectations-list {
  list-style: none;
}

.expectations-list li {
  padding: 8px 0;
  padding-left: 24px;
  font-size: 13px;
  color: #4b5563;
  position: relative;
}

.expectations-list li::before {
  content: "☐";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-size: 16px;
}

/*Login*/
.login-container {
  margin: 0 auto;
}

.login-container {
  width: 100%;
  max-width: 450px;
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.login-subtitle {
  font-size: 14px;
  color: #6b7280;
}

/* Tab Buttons */
.tab-buttons {
  display: flex;
  background: white;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tab-btn {
  flex: 1;
  padding: 16px;
  background: #f3f4f6;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.tab-btn.active {
  background: white;
  color: #3b82f6;
  border-bottom-color: #3b82f6;
}

.tab-btn:hover:not(.active) {
  background: #e5e7eb;
}

/* Form Card */
.form-card {
  background: white;
  padding: 40px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-section {
  display: none;
}

.form-section.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-header {
  margin-bottom: 24px;
}

.form-title {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 6px;
}

.form-description {
  font-size: 14px;
  color: #6b7280;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: #9ca3af;
  font-size: 16px;
}

.form-input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  color: #1f2937;
  background: #f9fafb;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: #3b82f6;
  background: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.forgot-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #3b82f6;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.forgot-link:hover {
  color: #2563eb;
  text-decoration: underline;
}

.back-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: #3b82f6;
}

.help-text {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #6b7280;
}

.help-text a {
  color: #3b82f6;
  text-decoration: none;
}

.help-text a:hover {
  text-decoration: underline;
}



/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .nav ul {
    gap: 15px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--white);
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 1rem;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .btn-primary {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}