/* tours.css
   Page-specific styles to match the reference layout while preserving your global home.css look.
*/


body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7f8fa;
  margin: 0;
  color: #233D6A;
}

body, html {
  max-width: 100vw;
  overflow-x: hidden;
}

.display-main {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 3.4rem;
  letter-spacing: .5px;
  color: #fff;
  text-shadow: 0 6px 24px rgba(30, 50, 80, 0.25);
}


/* Header Styles - Screenshot 2 with Hamburger */
.main-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ececec;
  box-shadow: 0 2px 9px rgba(23,47,77,0.07);
  position: sticky;
  top: 0;
  z-index: 10;
}
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-content {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.site-logo {
  font-weight: 600;
  font-size: 1.22rem;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #2d2d2d;
  letter-spacing: .5px;
}
.logo-icon {
  font-size: 1.37rem;
  color: #fc6c1c;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  gap: 32px;
  transition: right .25s;
}
.nav-link {
  color: #2d2d2d;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.04rem;
  padding: 10px 2px;
  border-radius: 7px;
  transition: background .17s, color .17s;
}
.nav-link.active, .nav-link:hover {
  color: #fc6c1c;
  background: #fc6c1c18;
}
.header-btn {
  background: linear-gradient(90deg,#fc6c1c 70%,#fdba31 100%);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 8px 26px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(252,108,28,.09);
  transition: background .15s,box-shadow .15s;
}
.header-btn:hover {
  background: linear-gradient(90deg,#fdba31 40%, #fc6c1c 100%);
  box-shadow: 0 4px 14px rgba(252,108,28,0.16);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 8px;
  z-index: 30;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 4px;
  background: #fc6c1c;
  margin: 3px 0;
  border-radius: 3px;
  transition: 0.3s;
}

/* Hamburger mobile open/close animation */
.main-header.nav-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.main-header.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}
.main-header.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Responsive Hamburger Nav */
@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 65px;
    right: -100vw;
    background: #fff;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 6px 24px rgba(30, 50, 80, 0.09);
    border-radius: 0px 0px 16px 16px;
    min-width:220px;
    padding: 0 0 15px 0;
    visibility: hidden;
  }
  .main-header.nav-open .main-nav {
    right: 0;
    visibility: visible;
    transition: right .26s;
  }
  .main-nav .nav-link {
    font-size: 1.15rem;
    padding: 15px 32px;
    width: 100%;
    color: #2d2d2d;
    border-radius: 0;
    border-bottom: 1px solid #ececec;
    text-align: left;
    background: none;
  }
  .main-nav .nav-link:last-child {
    border-bottom: none;
  }
  .header-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* End of header */

.contact-hero {
  background: linear-gradient(90deg,#fffbe5 0%, #feecd8 100%);
  padding: 45px 0 28px 0;
  text-align: center;
}
.contact-hero h1 {
  font-size: 2.1rem;
  margin-bottom: 7px;
  font-weight: 700;
}
.contact-hero p {
  color: #656e7a;
  font-size: 1.13rem;
  margin: 0;
  font-weight: 500;
}
.contact-main-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 54px auto;
  padding: 0 10px;
}
.contact-form-area {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(30,50,80,0.06);
  flex: 1.3;
  min-width: 310px;
  padding: 36px 28px 32px 28px;
}
.contact-form-area h2 {
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 25px;
}
.contact-form-area label {
  font-weight: 500;
  display: block;
  margin-top: 13px;
  margin-bottom: 5px;
}
.contact-form-area input,
.contact-form-area textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 7px;
  border: 1px solid #e4e7ec;
  font-size: 1.07rem;
  font-family: inherit;
  margin-bottom: 4px;
  transition: border .18s;
  box-sizing: border-box;
}
.contact-form-area input:focus,
.contact-form-area textarea:focus {
  border-color: #fc6c1c;
}
.send-btn {
  margin-top: 15px;
  width: 100%;
  background: linear-gradient(90deg,#fc6c1c 45%,#fdba31 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 13px 0;
  font-size: 1.11rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(252,108,28,0.12);
  transition: background .21s, box-shadow .21s, transform .21s;
}
.send-btn:hover,
.send-btn:focus {
  background: linear-gradient(90deg,#fdba31 40%, #fc6c1c 100%);
  box-shadow: 0 4px 14px rgba(252,108,28,0.16);
  transform: scale(1.01);
}
.thank-you-message {
  color: #fc6c1c;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 21px;
  text-align: center;
  background: #fffbea;
  border-radius: 7px;
  padding: 12px 0;
}
.contact-info-area {
  flex: 1;
  min-width: 270px;
  margin-top: 0;
}
.contact-info-area h2 {
  font-size: 1.14rem;
  font-weight: 600;
  margin-bottom: 19px;
}
.contact-info-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 7px rgba(30,50,80,0.09);
  padding: 16px 20px 16px 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-icon {
  font-size: 1.35rem;
  color: #fc6c1c;
  margin-top: 4px;
}
.contact-info-card strong {
  color: #fc6c1c;
  letter-spacing: .2px;
  font-weight: 700;
  font-size: 1.06rem;
}
.contact-info-card a {
  color: #233D6A;
  text-decoration: none;
  font-size: 1.01rem;
}
.office-map {
  border-radius: 12px;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 2px 13px rgba(30,50,80,0.07);
}
.office-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
}
.visit-office-section {
  background: #f7fafc;
  text-align: center;
  padding: 38px 0 42px 0;
}
.visit-office-section h2 {
  font-weight: 700;
  font-size: 1.31rem;
  margin-bottom: 7px;
}
.visit-office-section p {
  color: #626e80;
  font-size: 1.07rem;
  margin-bottom: 23px;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto 46px auto;
  padding: 0 14px;
  text-align: center;
}
.faq-section h2 {
  font-size: 1.29rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.faq-list {
  text-align: left;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(30,50,80,0.08);
  margin-bottom: 15px;
  padding: 18px 20px 13px 20px;
}
.faq-item strong {
  color: #233d6a;
  font-size: 1.06rem;
  margin-bottom: 7px;
  font-weight: 600;
  display:block;
}
.faq-item p {
  color: #626e80;
  margin:6px 0 0 0;
  font-size: 1rem;
}

@media(max-width:1000px){
  .contact-main-section {flex-direction:column;gap:28px;}
  .visit-office-section {padding:23px 0 20px 0;}
}
@media (max-width:600px){
  .contact-form-area,
  .contact-info-area,
  .office-map,
  .faq-section {min-width:0;padding-left:2px;padding-right:2px;}
  .about-hero h1 {font-size:1.5rem;}
  .contact-form-area {padding: 18px 6px 16px 6px;}
}

/* Footer main section */
.main-footer {
  background: #233d6a;
  color: #fff;
  padding-top: 46px;
  padding-bottom: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
}
.footer-content.container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 28px;
}

/* Logo & tagline */
.footer-logo-area {
  flex: 1 1 280px;
  min-width: 220px;
  max-width: 320px;
  margin-right: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.57rem;
  font-weight: 900;
  color: #fdba31;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Updated logo-icon to host an image */
.footer-logo-title .logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

/* Company logo sizing and responsiveness */
.company-logo,
.footer-logo-title .logo-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

/* Slightly smaller on small screens */
@media (max-width:600px) {
  .company-logo,
  .footer-logo-title .logo-icon img {
    width: 40px;
    height: 40px;
  }
}

.footer-text {
  color: #e0e6f6;
  font-size: 1.02rem;
  margin-top: 1px;
}

/* Footer columns */
.footer-columns {
  display: flex;
  flex: 2 1 540px;
  justify-content: flex-end;
  gap: 52px;
}
.footer-col {
  min-width: 145px;
  max-width: 235px;
}
.footer-col strong {
  color: #fdba31;
  display: block;
  margin-bottom: 11px;
  font-size: 1.09rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin-bottom: 9px;
  font-size: 1.01rem;
}
.footer-col a {
  color: #fff;
  text-decoration: none;
  transition: color .18s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-col a:hover,
.footer-col a:focus {
  color: #fdba31;
  text-decoration: underline;
}
.footer-col a.footer-icon {
  font-size: 1.14rem;
  color: #fdba31;
  margin-right: 3px;
  transition: color .18s;
}
.footer-col a.footer-icon:hover {
  color: #fc6c1c;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}
.footer-socials a {
  color: #fdba31;
  font-size: 1.25rem;
  transition: color .18s, transform .17s;
}
.footer-socials a:hover {
  color: #fc6c1c;
  transform: scale(1.2);
}

/* Footer Bottom Bar */
.footer-bottom.container {
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
  border-top: 1px solid #35559c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.97rem;
  color: #e0e6f6;
  background: #233d6a;
  padding-top: 16px;
  padding-bottom: 18px;
}
.footer-bottom-sep {
  color: #fc6c1c;
  margin: 0 13px;
  font-weight: 900;
}

/* Responsive Styles */
@media (max-width:900px){
  .footer-content.container {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .footer-logo-area {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .footer-columns {
    gap: 30px;
    flex-wrap: wrap;
  }
  .footer-col {
    min-width: 120px;
  }
  .footer-bottom.container {
    flex-direction: column;
    gap: 7px;
    padding: 13px 12px 16px 12px;
  }
}
@media (max-width:600px){
  .main-footer {
    padding-top: 27px;
  }
  .footer-content.container {
    padding: 0 7px;
  }
  .footer-bottom.container {
    padding: 13px 7px 10px 7px;
    font-size: .93rem;
  }
}