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 */
.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: 12px; /* Increased for space with image */
  color: #2d2d2d;
  letter-spacing: .5px;
}
.logo-image img {
  height: 34px;
  width: auto;
  display: block;
  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 */

.hero-full {
  min-height: 100vh;
  height: 100vh;
  width: 100vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
              url(images/scene.jpg) no-repeat center center/cover;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: linear-gradient(90deg,rgba(252,108,28,0.17) 0%,rgba(253,186,49,0.13) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.hero-content .subtitle {
  color:#fff;
  font-size: 1.52rem;
  font-weight: 500;
  opacity:.96;
  margin-bottom: 19px;
  margin-top: 12px;
  line-height:1.35;
  letter-spacing:.2px;
}
.hero-cta-btn {
  background: linear-gradient(90deg,#fc6c1c 70%,#fdba31 100%);
  color: #fff;
  border-radius: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.18rem;
  border: none;
  box-shadow: 0 2px 15px rgba(252,108,28,0.19);
  padding: 17px 55px;
  text-decoration: none;
  transition: background .17s, box-shadow .17s, transform .17s;
  display: inline-block;
  margin-top: 10px;
}
.hero-cta-btn:hover, .hero-cta-btn:focus {
  background: linear-gradient(90deg,#fdba31 50%, #fc6c1c 100%);
  box-shadow: 0 7px 22px rgba(252,108,28,0.22);
  transform: scale(1.06);
}
.scroll-down-indicator {
  position: absolute;
  left: 50%;
  bottom: 38px;
  font-size: 2.3rem;
  color: #fdba31;
  transform: translateX(-50%);
  animation: scroll-indicator-bounce 2s infinite;
  z-index: 2;
}
@keyframes scroll-indicator-bounce {
  0%, 100% { bottom:38px; }
  50% { bottom:58px; }
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #233D6A;
  letter-spacing: .06em;
}
.section-intro {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  color: #525d6b;
  margin-bottom: 29px;
}
.home-about {
  background: #fff;
  padding: 68px 0 48px 0;
}
.about-container {
  display: flex;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
  gap: 52px;
  flex-wrap: wrap;
  justify-content: center;
}
.about-img img {
  width: 330px;
  height: 330px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(30, 50, 80, 0.13);
}
.about-lead {
  font-family: 'Playfair Display', serif;
  color: #fc6c1c;
  font-size: 1.23rem;
  font-weight: 700;
  letter-spacing:.2px;
  margin-bottom:6px;display:block;
}
.about-text {
  max-width:440px;
}
.home-about ul {
  margin:15px 0;
  padding:0 0 0 13px;
  font-size: 1.08rem;
  color: #233d6a;
}
.home-about li {
  margin-bottom: 8px;
}
.about-link {
  color: #fc6c1c;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.09rem;
  margin-top:16px;
  display:inline-block;
}
.about-link:hover { text-decoration:underline; color:#fdba31;}


/* Car Rentals */
.home-cars {
  background:#f7fafc;
  padding:52px 0 39px 0;
  text-align:center;
}
.car-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 35px;
  flex-wrap: wrap;
}
.car-card {
  background:#fff;
  border-radius:17px;
  box-shadow:0 8px 26px rgba(30, 50, 80, 0.09);
  padding:25px 19px 21px 19px;
  width:260px;
  text-align:center;
  display:flex;flex-direction:column;align-items:center;
}
.car-card img {
  width:100%;
  height:140px;
  object-fit:cover;
  border-radius:12px;margin-bottom:15px;
}
.car-card h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size:1.12rem;font-weight:700;color:#233D6A;margin:0 0 10px 0;
}
.car-info {
  color:#656e7a;
  font-size:.98rem;
  margin-bottom:10px;
}
.car-book-btn {
  background: linear-gradient(90deg,#fc6c1c 45%,#fdba31 95%);
  color:#fff;
  font-weight:600;
  border:none;
  border-radius:7px;
  padding:8px 20px;
  font-size:1.01rem;
  cursor:pointer;text-decoration:none;
  margin-top:7px;
  transition: background .18s, box-shadow .18s, transform .18s;
}
.car-book-btn:hover {background:linear-gradient(90deg,#fdba31 40%,#fc6c1c 100%);}
.home-destinations {
  background: #fff;
  padding:48px 0 30px 0;
  text-align:center;
}
.dest-grid {
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:32px;
  max-width:1100px;margin:0 auto;
}
.dest-card {
  background:#f7fafc;
  border-radius:17px;
  box-shadow:0 2px 13px rgba(30, 50, 80, 0.09);
  padding-bottom:3px;
  overflow:hidden;
  position:relative;
}
.dest-card img {
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius:17px 17px 0 0;
}
.dest-title {
  font-size:1.13rem;
  font-weight:700;
  color:#fc6c1c;
  background:#fff;
  border-bottom-left-radius:17px;
  border-bottom-right-radius:17px;
  padding:13px 0;
  margin-top:-3px;
  letter-spacing:.06em;
  display:flex;align-items:center;justify-content:center;gap:7px;
}
/* Featured Tours Section */
.featured-tours {
  background: #fff;
  padding: 50px 0 40px 0;
}

.featured-tours .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  font-weight: 900;
  color: #233D6A;
  margin-bottom: 10px;
  text-align: center;
}

.tour-intro {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #525d6b;
  text-align: center;
  margin-bottom: 32px;
}

.featured-tours .cards {
  display: flex;
  gap: 38px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1200px;
}

.tour-card {
  background: #f7fafc;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(30,50,80,0.12);
  overflow: hidden;
  width: 350px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .16s, box-shadow .16s;
}
.tour-card:hover, .tour-card:focus {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 18px 38px rgba(30,50,80,0.18);
}

.tour-card-img-area {
  position: relative;
}
.tour-card-img-area img {
  width: 100%;
  height: 193px;
  object-fit: cover;
  border-radius: 22px 22px 0 0;
  display: block;
}
.tour-duration, .tour-people {
  position: absolute;
  bottom: 13px;
  left: 14px;
  background: rgba(252,108,28,0.93);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .94rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 4px 13px;
  margin-bottom: 0;
  margin-right: 5px;
  box-shadow: 0 2px 18px rgba(252,108,28,0.14);
}
.tour-people {
  left: auto;
  right: 14px;
  background: rgba(35,61,106,0.82);
}

.tour-card-body {
  padding: 23px 21px 19px 21px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-title {
  font-size: 1.42rem;
  font-weight: 800;
  color: #233d6a;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
}
.tour-rating {
  font-size: 1.07rem;
  color: #fdba31;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 3px;
}
.tour-star i {
  color: #fdba31;
}
.tour-desc {
  color: #535d6b;
  font-size: 1.04rem;
  margin: 0 0 13px 0;
}
.tour-highlights strong {
  color: #fc6c1c;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 7px;
  display: block;
}
.tour-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tour-highlights li {
  display: flex;
  align-items: center;
  font-size: .98rem;
  color: #233d6a;
  margin-bottom: 6px;
}
.tour-tick i {
  color: #fc6c1c;
  margin-right: 7px;
  font-size: 1.05rem;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.tour-book-btn {
  background: linear-gradient(90deg, #fc6c1c 65%, #fdba31 100%);
  color: #fff;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  box-shadow: 0 2px 12px rgba(252,108,28,0.14);
  padding: 9px 21px;
  text-decoration: none;
  transition: background .17s, box-shadow .17s, transform .17s;
  cursor: pointer;
  display: inline-block;
}
.tour-book-btn:hover, .tour-book-btn:focus {
  background: linear-gradient(90deg,#fdba31 60%, #fc6c1c 100%);
  box-shadow: 0 6px 18px rgba(252,108,28,0.18);
  transform: scale(1.04);
}

/* Card Tags */
.card-tag {
  position: absolute;
  top: 15px;
  right: 14px;
  background: #fc6c1c;
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 6px 16px;
  box-shadow: 0 2px 11px rgba(252,108,28,0.13);
  z-index: 2;
}
.card-tag.top {
  background: #233d6a;
}
.card-tag.new {
  background: #fdba31;
  color: #233d6a;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .featured-tours .cards {
    gap: 26px;
    max-width: 100%;
  }
  .tour-card {
    width: 98vw;
    max-width: 370px;
  }
}
@media (max-width: 700px) {
  .featured-tours .section-title { font-size: 1.22rem; }
  .tour-card { width: 98vw; max-width: 99vw; }
  .tour-card-img-area img { height: 140px; }
  .tour-title { font-size: 1.11rem; }
  .tour-card-footer { flex-direction: column; align-items: flex-start; gap: 11px; }
}


/* Reviews Section */
.home-reviews {
  background: #f3f4fa;
  padding: 48px 0 37px 0;
}

.home-reviews .section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #233D6A;
  letter-spacing: .06em;
  text-align: center;
}

.review-cards {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 33px;
  flex-wrap: wrap;
}

.review-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(30,50,80,0.09);
  width: 320px;
  min-height: 210px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 29px 19px 23px 19px;
  transition: transform .15s, box-shadow .15s;
  position: relative;
}

.review-card:hover, .review-card:focus {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 9px 25px rgba(30,50,80,0.17);
}

.review-photo {
  font-size: 2.5rem;
  color: #fc6c1c;
  margin-bottom: 4px;
}

.review-stars {
  color: #fdba31;
  font-size: 1.25rem;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 1px;
}

.review-text {
  color: #333;
  font-size: 1.07rem;
  margin: 0 0 10px 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

.reviewer {
  color: #233d6a;
  font-weight: 700;
  margin-top: 5px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.reviewer-location {
  color: #656e7a;
  font-size: .97rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 3px;
}

/* Responsive */
@media (max-width: 1100px) {
  .review-cards {
    gap: 18px;
  }
  .review-card {
    width: 39vw;
    min-width: 220px;
    max-width: 97vw;
  }
}
@media (max-width: 700px) {
  .home-reviews .section-title { font-size: 1.17rem; }
  .review-card { width: 97vw; min-width: 97vw; }
  .review-cards { gap: 11px; }
}



.home-gallery {
  background: #fff;
  padding: 38px 0;
  text-align: center;
}
.gallery-title {
  margin-bottom: 19px;
}
.gallery-strip {
  display:flex;
  gap:23px;
  align-items:center;
  justify-content:flex-start;
  width:100vw;
  overflow:hidden;
  margin:0 auto;
  position:relative;
}
.gallery-strip img {
  width:220px;
  height:150px;
  object-fit:cover;
  border-radius:14px;
  box-shadow:0 2px 10px rgba(30,50,80,0.10);
  flex-shrink:0;
}
@media(max-width:1100px){
  .container {padding:0 10px;}
  .cards {grid-template-columns: repeat(2, 1fr);}
  .dest-grid {grid-template-columns:repeat(2,1fr);}
  .value-cards {flex-wrap:wrap;gap:18px;}
  .gallery-strip img {width:180px;height:120px;}
}
@media(max-width:700px){
  .hero-content .display-main {font-size:2rem;}
  .hero-full {padding-top:55px;}
  .section-title {font-size:1.17rem;}
  .about-img img {width:97vw;height:200px;}
  .about-container {flex-direction:column;gap:21px;}
  .car-card, .review-card {width:97vw;}
  .dest-grid, .review-cards, .car-cards {gap:14px;}
  .gallery-strip img {width:150px;height:96px;}
}


/* ==============================
   How To Book Section
   ============================== */
.how-to-book-section {
  background: #f7f8fa;
  padding: 50px 0 42px 0;
  text-align: center;
}

.how-to-book-title {
  margin-bottom: 34px;
}

.how-to-book-sub {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fdba31;
  font-weight: 700;
  font-size: 1.18rem;
  display: block;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.how-to-book-main {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: 900;
  color: #1a1a1a;
  margin: 0;
}

/* Steps Row */
.booking-steps {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 56px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
  transition: transform 0.19s, box-shadow 0.15s;
  cursor: pointer;
  padding: 6px 8px;
  position: relative;
}

.booking-step .icon-area {
  font-size: 3.6rem;
  color: #111;
  margin-bottom: 18px;
  background: none;
  transition: background 0.17s, color 0.17s, transform 0.17s;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-step[data-step="4"] .icon-area.check {
  background: #111;
  color: #fff;
  font-size: 2.6rem;
}

.booking-step .icon-rs {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #111;
}

.booking-step .step-text {
  margin-top: 3px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  color: #212121;
  font-weight: 500;
  line-height: 1.25;
}

/* Arrows between steps */
.step-arrow {
  font-size: 2.1rem;
  color: #111;
  align-self: flex-end;
  margin-bottom: 25px;
  transition: color .18s;
}

/* Advanced JS Effects: Animate step on hover */
.booking-step:hover .icon-area,
.booking-step.active .icon-area {
  background: #fdba31;
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 6px 12px rgba(252,108,28,0.17);
}

.booking-step:hover .step-text,
.booking-step.active .step-text {
  color: #fc6c1c;
}

/* Responsive */
@media (max-width: 1100px) {
  .how-to-book-main { font-size: 2rem; }
  .booking-steps { gap: 34px; }
  .booking-step .icon-area { font-size: 2.5rem; width: 55px; height: 55px; }
  .step-arrow { font-size: 1.6rem; margin-bottom: 20px;}
}
@media (max-width: 700px) {
  .how-to-book-section { padding: 35px 2px 22px 2px; }
  .how-to-book-main { font-size: 1.3rem; }
  .booking-steps { flex-wrap: wrap; gap: 12px;}
  .booking-step { min-width: 98px; }
  .booking-step .icon-area { font-size: 1.5rem; width: 37px; height: 37px; margin-bottom: 8px;}
  .step-arrow { font-size: 1.03rem; margin-bottom: 11px;}
  .booking-step .step-text { font-size: .93rem; }
}


/* 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;
  }
}