/* Reset and base styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #262626;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #1F3864;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}

.logo span {
  color: #B08D57;
  font-weight: normal;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
}

nav ul li a:hover {
  color: #B08D57;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(31,56,100,0.85), rgba(31,56,100,0.85)),
              url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1200');
  background-size: cover;
  background-position: center;
  padding: 120px 40px;
  text-align: center;
  color: #ffffff;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #e6e6e6;
}

.btn {
  display: inline-block;
  background-color: #B08D57;
  color: #ffffff;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.2s;
}

.btn:hover {
  background-color: #9a7847;
}

/* About Section */
.about {
  padding: 80px 40px;
  text-align: center;
  background-color: #ffffff;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  color: #1F3864;
  font-size: 32px;
  margin-bottom: 20px;
}

.about .mission {
  color: #444444;
  font-size: 17px;
  margin-bottom: 40px;
}

.about .our-story {
  color: #555555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about h3 {
  color: #1F3864;
  font-size: 22px;
  margin-bottom: 20px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.value-item {
  background-color: #F2F2F2;
  border-left: 4px solid #B08D57;
  padding: 12px 20px;
  font-weight: 600;
  color: #1F3864;
  border-radius: 4px;
  font-size: 15px;
}

/* Services Section */
.services {
  padding: 80px 40px;
  background-color: #F7F7F7;
  text-align: center;
}

.services-content {
  max-width: 1100px;
  margin: 0 auto;
}

.services h2 {
  color: #1F3864;
  font-size: 32px;
  margin-bottom: 10px;
}

.section-intro {
  color: #666666;
  font-size: 16px;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  text-align: left;
}

.service-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card-images {
  display: flex;
  height: 160px;
}

.service-card-images img {
  width: 50%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.service-card-text {
  padding: 22px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.service-card h3 {
  color: #1F3864;
  font-size: 18px;
  margin-bottom: 12px;
}

.service-card p {
  color: #555555;
  font-size: 14px;
  line-height: 1.6;
}

/* Why Us Section */
.why-us {
  padding: 80px 40px;
  background-color: #1F3864;
  text-align: center;
}

.why-us-content {
  max-width: 1100px;
  margin: 0 auto;
}

.why-us h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  text-align: left;
}

.why-item {
  background-color: rgba(255,255,255,0.08);
  border-left: 4px solid #B08D57;
  padding: 22px;
  border-radius: 6px;
}

.why-item h4 {
  color: #B08D57;
  font-size: 17px;
  margin-bottom: 10px;
}

.why-item p {
  color: #e6e6e6;
  font-size: 14px;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 80px 40px;
  background-color: #ffffff;
  text-align: center;
}

.contact-content {
  max-width: 1000px;
  margin: 0 auto;
}

.contact h2 {
  color: #1F3864;
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.contact-details p {
  margin-bottom: 16px;
  font-size: 15px;
  color: #333333;
}

.contact-details strong {
  color: #1F3864;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #B08D57;
}

.contact-form button {
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: #16294D;
  color: #cccccc;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* Responsive: stack contact columns on small screens */
@media (max-width: 700px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }
}

/* Logo image */
.logo img {
  height: 60px;
  width: auto;
}

/* Footer link */
footer a {
  color: #B08D57;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer p {
  margin-top: 4px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #1F3864, #16294D);
  padding: 60px 40px;
  text-align: center;
}

.cta-content h2 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 12px;
}

.cta-content p {
  color: #d9d9d9;
  font-size: 16px;
  margin-bottom: 26px;
}

/* WhatsApp floating button */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.2s;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

/* Hamburger menu button - hidden on desktop */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1F3864;
    padding: 10px 0;
  }

  nav.nav-open ul {
  display: flex;
}

  nav ul li {
    text-align: center;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-container {
    position: relative;
    flex-wrap: wrap;
  }
}

/* Trust Signals */
.trust-signals {
  padding: 50px 40px;
  background-color: #F7F7F7;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.trust-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}

.trust-item h3 {
  color: #1F3864;
  font-size: 22px;
  margin-bottom: 4px;
}

.trust-item p {
  color: #666666;
  font-size: 14px;
}

/* Projects Section */
.projects {
  padding: 80px 40px;
  background-color: #ffffff;
  text-align: center;
}

.projects-content {
  max-width: 1100px;
  margin: 0 auto;
}

.projects h2 {
  color: #1F3864;
  font-size: 32px;
  margin-bottom: 10px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  text-align: left;
  margin-top: 40px;
}

.project-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.project-card-text {
  padding: 20px;
}

.project-tag {
  display: inline-block;
  background-color: #F2F2F2;
  color: #B08D57;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.project-card h3 {
  color: #1F3864;
  font-size: 17px;
  margin-bottom: 8px;
}

.project-card p {
  color: #555555;
  font-size: 14px;
}

.projects-note {
  margin-top: 30px;
  color: #555555;
}

.projects-note a {
  color: #B08D57;
  font-weight: bold;
  text-decoration: none;
}

/* FAQ Section */
.faq {
  padding: 80px 40px;
  background-color: #F7F7F7;
}

.faq-content {
  max-width: 750px;
  margin: 0 auto;
}

.faq h2 {
  color: #1F3864;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 6px;
  margin-bottom: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: bold;
  color: #1F3864;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  color: #B08D57;
  font-size: 20px;
  transition: transform 0.2s;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 18px;
}

.faq-answer p {
  color: #555555;
  font-size: 14px;
  line-height: 1.6;
}

/* Our Journey Section */
.journey {
  padding: 80px 40px;
  background-color: #ffffff;
}

.journey-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.journey h2 {
  color: #1F3864;
  font-size: 32px;
  margin-bottom: 10px;
}

.journey-text {
  color: #444444;
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
  margin-top: 30px;
}

.journey-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 50px;
  text-align: left;
}

.journey-step {
  background-color: #F7F7F7;
  border-top: 4px solid #B08D57;
  border-radius: 8px;
  padding: 24px;
}

.journey-year {
  display: inline-block;
  background-color: #1F3864;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.journey-step h4 {
  color: #1F3864;
  font-size: 18px;
  margin-bottom: 8px;
}

.journey-step p {
  color: #555555;
  font-size: 14px;
  line-height: 1.6;
}
/* ==========================================================================
   Explore More (Team / Careers / Media teaser on Home)
   ========================================================================== */
.explore-more {
  padding: 80px 40px;
  background-color: #ffffff;
  text-align: center;
}

.explore-content {
  max-width: 1100px;
  margin: 0 auto;
}

.explore-content h2 {
  color: #1F3864;
  font-size: 32px;
  margin-bottom: 10px;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
  text-align: left;
}

.explore-card {
  display: block;
  background-color: #F7F7F7;
  border-radius: 8px;
  padding: 30px 26px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  border-top: 4px solid #B08D57;
}

.explore-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  background-color: #ffffff;
}

.explore-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(176,141,87,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.explore-card h3 {
  color: #1F3864;
  font-size: 19px;
  margin-bottom: 8px;
}

.explore-card p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 14px;
}

.explore-link {
  color: #B08D57;
  font-weight: bold;
  font-size: 14px;
}

/* CTA button group + outline variant */
.cta-btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 12px 30px;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: #1F3864;
}

/* ==========================================================================
   Footer (expanded sitemap)
   ========================================================================== */
footer {
  background-color: #16294D;
  color: #cccccc;
  text-align: left;
  padding: 60px 40px 20px;
  font-size: 14px;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  color: #B08D57;
  font-size: 13px;
  font-style: italic;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #B08D57;
}

.footer-bottom {
  max-width: 1100px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 13px;
  color: #999999;
}

@media (max-width: 700px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   Sub-page hero (Team / Careers / Media)
   ========================================================================== */
.page-hero {
  background: linear-gradient(rgba(31,56,100,0.9), rgba(31,56,100,0.9)),
              url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1200');
  background-size: cover;
  background-position: center;
  padding: 90px 40px 70px;
  text-align: center;
  color: #ffffff;
}

.page-hero h1 {
  font-size: 36px;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 17px;
  color: #e6e6e6;
  max-width: 650px;
  margin: 0 auto;
}

/* ==========================================================================
   Team Page
   ========================================================================== */
.team-section {
  padding: 80px 40px;
  background-color: #ffffff;
  text-align: center;
}

.team-content {
  max-width: 1100px;
  margin: 0 auto;
}

.team-content h2 {
  color: #1F3864;
  font-size: 30px;
  margin-bottom: 10px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.team-card {
  background-color: #F7F7F7;
  border-radius: 8px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.team-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background-color: #1F3864;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.team-card h3 {
  color: #1F3864;
  font-size: 17px;
  margin-bottom: 4px;
}

.team-role {
  color: #B08D57;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
  display: block;
}

.team-card p.team-bio {
  color: #666666;
  font-size: 13.5px;
  line-height: 1.6;
  font-style: italic;
}

.team-note {
  max-width: 700px;
  margin: 50px auto 0;
  background-color: #F2F2F2;
  border-left: 4px solid #B08D57;
  padding: 18px 22px;
  border-radius: 4px;
  color: #555555;
  font-size: 14px;
  text-align: left;
}

/* ==========================================================================
   Careers Page
   ========================================================================== */
.careers-section {
  padding: 80px 40px;
  text-align: center;
}

.careers-section.alt {
  background-color: #F7F7F7;
}

.careers-content {
  max-width: 950px;
  margin: 0 auto;
}

.careers-content h2 {
  color: #1F3864;
  font-size: 30px;
  margin-bottom: 10px;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}

.culture-item {
  background-color: #ffffff;
  border-left: 4px solid #B08D57;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.culture-item h4 {
  color: #1F3864;
  font-size: 16px;
  margin-bottom: 8px;
}

.culture-item p {
  color: #555555;
  font-size: 14px;
  line-height: 1.6;
}

.openings-box {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px 30px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  text-align: center;
}

.openings-box h3 {
  color: #1F3864;
  font-size: 20px;
  margin-bottom: 12px;
}

.openings-box p {
  color: #555555;
  font-size: 15px;
  max-width: 550px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.apply-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
  text-align: left;
}

.apply-step {
  background-color: #ffffff;
  border-top: 4px solid #1F3864;
  border-radius: 8px;
  padding: 24px;
}

.apply-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #B08D57;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 12px;
}

.apply-step h4 {
  color: #1F3864;
  font-size: 16px;
  margin-bottom: 8px;
}

.apply-step p {
  color: #555555;
  font-size: 14px;
  line-height: 1.6;
}

/* ==========================================================================
   Media Library Page
   ========================================================================== */
.media-section {
  padding: 80px 40px;
  background-color: #ffffff;
  text-align: center;
}

.media-content {
  max-width: 1100px;
  margin: 0 auto;
}

.media-content h2 {
  color: #1F3864;
  font-size: 30px;
  margin-bottom: 10px;
}

.media-filter-note {
  color: #666666;
  font-size: 14px;
  margin-bottom: 10px;
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.media-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 220px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.media-item:hover img {
  transform: scale(1.06);
}

.media-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(31,56,100,0.9));
  color: #ffffff;
  padding: 30px 14px 12px;
  font-size: 13px;
  text-align: left;
}

.media-caption span {
  display: block;
  color: #B08D57;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.press-box {
  background-color: #F2F2F2;
  border-left: 4px solid #B08D57;
  padding: 24px;
  border-radius: 6px;
  margin-top: 20px;
  color: #555555;
  font-size: 14px;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Media Library: video showcase
   ========================================================================== */
.media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #000;
}

.video-placeholder {
  background-color: #1F3864;
  display: flex;
  align-items: flex-end;
}

.placeholder-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.placeholder-inner svg {
  opacity: 0.85;
}

.placeholder-inner span {
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.press-box .tips-list {
  margin: 12px 0 0 20px;
  padding: 0;
}

.press-box .tips-list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ==========================================================================
   Accessibility: skip link + focus states
   ========================================================================== */
.skip-link {
  position: absolute;
  top: -60px;
  left: 10px;
  background-color: #1F3864;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  z-index: 2000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 10px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #B08D57;
  outline-offset: 2px;
}

.whatsapp-btn:focus-visible {
  outline-offset: 4px;
}

/* Honeypot spam-trap field: hidden from real visitors, visible to bots that fill every field */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Contact section map embed */
.contact-map {
  margin-top: 20px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-map iframe {
  display: block;
}

.rc-number {
  margin-top: 4px;
  font-size: 12px;
  color: #999999;
  font-style: italic;
}

/* ==========================================================================
   Back to top button
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background-color: #1F3864;
  color: #ffffff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 999;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s, background-color 0.2s, visibility 0.25s;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: #16294D;
}

@media (max-width: 600px) {
  .back-to-top {
    width: 42px;
    height: 42px;
  }
}

/* Company profile PDF download link */
.profile-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  border: 2px solid #1F3864;
  border-radius: 4px;
  color: #1F3864;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.profile-download:hover {
  background-color: #1F3864;
  color: #ffffff;
}

.profile-download:hover svg {
  stroke: #ffffff;
}

/* Contact form select dropdown */
.contact-form select {
  padding: 12px 14px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: #333333;
  background-color: #ffffff;
}

.contact-form select:invalid {
  color: #777777;
}

.contact-form select:focus {
  outline: none;
  border-color: #B08D57;
}

/* ==========================================================================
   Print styles: hide UI chrome, keep content readable on paper
   ========================================================================== */
@media print {
  .menu-toggle,
  .whatsapp-btn,
  .back-to-top,
  .skip-link,
  .cta-banner,
  video,
  .contact-map,
  .hp-field {
    display: none !important;
  }

  header {
    background-color: #ffffff !important;
    border-bottom: 2px solid #1F3864;
    position: static !important;
    box-shadow: none !important;
  }

  .logo, nav ul li a {
    color: #1F3864 !important;
  }

  .hero {
    background: none !important;
    color: #1F3864 !important;
    padding: 20px 0 !important;
  }

  .hero p {
    color: #333333 !important;
  }

  .why-us {
    background-color: #ffffff !important;
  }

  .why-us h2, .why-item h4 {
    color: #1F3864 !important;
  }

  .why-item p {
    color: #333333 !important;
  }

  .why-item {
    background-color: #F7F7F7 !important;
    border: 1px solid #dddddd;
  }

  footer {
    background-color: #ffffff !important;
    color: #333333 !important;
    border-top: 2px solid #1F3864;
  }

  footer a, .footer-col a, .footer-tagline {
    color: #1F3864 !important;
  }

  a[href]:after {
    content: "";
  }

  body {
    color: #000000;
  }

  section {
    page-break-inside: avoid;
  }
}

/* Request a Quote page: form labels */
.form-label {
  font-size: 13px;
  font-weight: bold;
  color: #1F3864;
  margin-top: 4px;
  margin-bottom: -8px;
}
