/* GLS Header and Footer Styles */
/* Based on your React components design */

* {
  box-sizing: border-box;
}

/* Header Styles */
.gls-header {
  position: relative;
  background: transparent;
  z-index: 9998;
}

.gls-nav {
  padding: 16px 0;
  border-color: #e5e7eb;
  position: relative;
  z-index: 9998;
}

@media (min-width: 640px) {
  .gls-nav {
    padding: 25px 0;
  }
}

.gls-nav-container {
  display: flex;
  width: 100%;
  max-width: 1440px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .gls-nav-container {
    justify-content: space-between;
    padding: 0 90px;
  }
}

/* Mobile Header */
.gls-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

@media (min-width: 1024px) {
  .gls-mobile-header {
    display: none;
  }
}

.gls-logo {
  display: flex;
  gap: 6px;
  align-items: center;
  cursor: pointer;
}

@media (min-width: 640px) {
  .gls-logo {
    gap: 8px;
  }
}

.gls-logo img {
  height: 42px;
  width: 136px;
}

.gls-menu-btn {
  cursor: pointer;
  width: 32px;
  height: 20px;
}

/* Desktop Header */
.gls-desktop-logo {
  display: none;
  gap: 6px;
  align-items: center;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .gls-desktop-logo {
    display: flex;
  }
}

@media (min-width: 640px) {
  .gls-desktop-logo {
    gap: 8px;
  }
}

.gls-desktop-logo img {
  height: 30px;
  color: white;
  cursor: pointer;
}

.gls-nav-list {
  display: none;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  
}

@media (min-width: 1024px) {
  .gls-nav-list {
    display: flex;
  }
}

.gls-nav-item {
  color: rgba(0, 0, 0, 0.7);
  font-size: 16px;
  letter-spacing: 0;
  cursor: pointer;
  text-decoration: none;
  font-weight: normal;
  transition: all 0.2s ease;
}

.gls-nav-item:hover {
  color: rgba(0, 0, 0, 0.9);
  text-decoration: none;
}

.gls-nav-item.active {
  font-weight: bold;
}

.gls-enquire-btn {
  margin-left: 32px;
  background: black;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 9999px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.gls-enquire-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Mobile Menu */
.gls-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  background: black;
}

.gls-mobile-menu.active {
  display: flex;
}

.gls-mobile-menu-content {
  width: 100%;
  background: black;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  padding-left: 16px;
  padding-right: 16px;
  overflow-y: auto;
}

.gls-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.gls-mobile-menu-header img {
  height: 30px;
  color: white;
  cursor: pointer;
}

.gls-mobile-close {
  display: inline-flex;
  align-items: center;
  color: white;
  border-radius: 8px;
  z-index: 50;
  background: none;
  border: none;
  cursor: pointer;
}

.gls-mobile-close span {
  font-size: 14px;
  cursor: pointer;
  color: white;
  line-height: 1;
  letter-spacing: 0;
  font-style: italic;
}

.gls-mobile-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 24px;
  padding-top: 75px;
}

.gls-mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gls-mobile-nav a {
  color: white;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  transition: all 0.2s ease;
}

.gls-mobile-nav a:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

/* Footer Styles */
.gls-footer {
  background: #241A0F;
  color: white;
  padding-top: 36px;
  padding-bottom: 40px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .gls-footer {
    padding-top: 86px;
  }
}

.gls-footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}

@media (min-width: 1024px) {
  .gls-footer-container {
    padding: 0 96px;
  }
}

.gls-footer-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .gls-footer-content {
    flex-direction: row;
  }
}

.gls-footer-brand {
  margin-right: 60px;
}

.gls-footer-brand img {
  margin-bottom: 24px;
}

.gls-social-links {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.gls-social-link {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px;
  border-radius: 50%;
  color: #A7A39F;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  transition: all 0.2s ease;
}

.gls-social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
}

.gls-footer-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gls-footer-section {
  max-width: 297px;
}

.gls-footer-section.hidden-mobile {
  display: none;
}

@media (min-width: 768px) {
  .gls-footer-section.hidden-mobile {
    display: block;
  }
}

.gls-footer-title {
  display: block;
  text-transform: uppercase;
  color: white;
  font-size: 12px;
  transition: all 0.2s ease;
  line-height: 1.6;
  letter-spacing: 0;
  padding-bottom: 8px;
  font-weight: 500;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .gls-footer-title {
    font-size: 16px;
  }
}

.gls-footer-text {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0;
  transition: all 0.2s ease;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-decoration: none;
}

@media (min-width: 768px) {
  .gls-footer-text {
    font-size: 16px;
  }
}

.gls-footer-text:hover {
  color: white;
  text-decoration: none;
}

.gls-footer-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .gls-footer-contact {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.gls-footer-contact-section {
  display: block;
}

@media (min-width: 768px) {
  .gls-footer-contact-section.hidden-mobile {
    display: block;
  }
}

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

@media (min-width: 768px) {
  .gls-footer-links {
    gap: 16px;
  }
}

.gls-footer-links-section {
  /* No additional styles needed, inherits from parent */
}

.gls-footer-links-section:last-child {
  margin-left: 0;
}

@media (min-width: 768px) {
  .gls-footer-links-section:last-child {
    margin-left: 48px;
  }
}

.gls-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gls-footer-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  transition: all 0.2s ease;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-decoration: none;
}

@media (min-width: 768px) {
  .gls-footer-nav a {
    font-size: 16px;
  }
}

.gls-footer-nav a:hover {
  color: white;
  text-decoration: none;
}

.gls-footer-separator {
  margin: 12px 0;
  background: rgba(255, 255, 255, 0.2);
  height: 1px;
  border: none;
  display: block;
}

@media (min-width: 768px) {
  .gls-footer-separator {
    margin-top: 68px;
    margin-bottom: 40px;
  }
}

.gls-footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-top: 0;
}

@media (min-width: 768px) {
  .gls-footer-bottom {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}

.gls-footer-copyright {
  color: white;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .gls-footer-copyright {
    font-size: 14px;
  }
}

.gls-footer-back-to-top {
  color: white;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
  transition: all 0.2s ease;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: none;
}

@media (min-width: 768px) {
  .gls-footer-back-to-top {
    font-size: 14px;
  }
}

.gls-footer-back-to-top:hover {
  color: #d1d5db;
  text-decoration: none;
}

/* Utility Classes */
.hidden {
  display: none;
}

/* Responsive utilities */
@media (max-width: 1023px) {
  .lg-hidden {
    display: none;
  }
}

@media (min-width: 1024px) {
  .lg-block {
    display: block;
  }
}

/* FAQ Accordion Styles */
.accordion .card {
  border: none;
  border-bottom: 1px solid #e5e7eb;
}

.accordion .card-header {
  background: transparent;
  border: none;
  padding: 0;
}

.accordion-button {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  color: #1f2937 !important;
  font-weight: 600;
  padding: 16px 0;
  text-align: left;
  width: 100%;
}

.accordion-button:hover {
  color: #374151 !important;
  text-decoration: none;
}

.accordion-button:focus {
  box-shadow: none !important;
  outline: none;
}

.accordion .collapse {
  border: none;
}

.accordion .card-body {
  padding: 0 0 16px 0;
  color: #6b7280;
  line-height: 1.6;
}

.accordion .ullist {
  margin: 16px 0;
  padding-left: 20px;
}

.accordion .ullist li {
  margin-bottom: 8px;
  color: #6b7280;
}

/* Hub-86 Specific Fixes */
.btn.custom-btn {
  display: inline-block !important;
  padding: 12px 20px !important;
  margin: 5px !important;
  text-decoration: none !important;
  border-radius: 4px !important;
  font-weight: 500 !important;
  text-align: center !important;
  white-space: nowrap !important;
  vertical-align: middle !important;
  cursor: pointer !important;
  border: 1px solid transparent !important;
  line-height: 1.5 !important;
}

.btn.custom-btn:hover {
  text-decoration: none !important;
  opacity: 0.9 !important;
}

.heading-title-1 {
  font-size: 24px !important;
  font-weight: bold !important;
  line-height: 1.3 !important;
  margin-bottom: 20px !important;
  color: #1f2937 !important;
}

@media (min-width: 768px) {
  .heading-title-1 {
    font-size: 28px !important;
  }
}

@media (min-width: 992px) {
  .heading-title-1 {
    font-size: 32px !important;
  }
}

/* Fix for broken layouts */
.container-fluid .container {
  max-width: 100% !important;
}

.pull-right {
  float: right !important;
}

@media (max-width: 767px) {
  .pull-right {
    float: none !important;
    text-align: center !important;
    margin-top: 20px !important;
  }
}

/* Max width constraint */
.container {
  max-width: 1336px !important;
}

.container-fluid .container {
  max-width: 1336px !important;
  margin: 0 auto !important;
}

/* Fix for the appointment/contact section above footer */
/* .route {
  padding: 40px 0 !important;
  background: #ffffff !important;
}

.form-div {
  padding: 20px !important;
  background: #f8f9fa !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.title-5 {
  font-size: 28px !important;
  font-weight: bold !important;
  color: #1f2937 !important;
  margin-bottom: 20px !important;
  line-height: 1.3 !important;
}

.whatsapp-btn {
  display: inline-block !important;
  background-color: #25d366 !important;
  color: white !important;
  padding: 12px 20px !important;
  border-radius: 25px !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  border: none !important;
  transition: all 0.3s ease !important;
}

.whatsapp-btn:hover {
  background-color: #128c7e !important;
  color: white !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
}

.whatsapp-btn img {
  width: 20px !important;
  height: 20px !important;
  vertical-align: middle !important;
  margin-right: 8px !important;
} */

/* Fix image responsiveness */
.img-fluid {
  max-width: 100% !important;
  height: auto !important;
}

/* Fix row and column spacing */
.row {
  margin-left: -15px !important;
  margin-right: -15px !important;
}

.col-sm-7, .col-sm-5, .col-sm-12 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

/* Import Contact Popup Styles */
@import url('./gls-contact-popup.css');

/* Ensure proper alignment */
.d-flex.align-items-center.justify-content-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

@media (max-width: 767px) {
  .form-div {
    margin-top: 30px !important;
    text-align: center !important;
  }
  
  /* .title-5 {
    font-size: 24px !important;
  } */
}

/* Fix for THE PERFECT boxes styling */
/* .first-div-size {
  background-color: #f8f9fa !important;
  border: 2px solid #e9ecef !important;
  border-radius: 8px !important;
  padding: 20px !important;
  margin-bottom: 15px !important;
  text-align: center !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

.first-div-size-1 {
  background-color: #f8f9fa !important;
  border: 2px solid #e9ecef !important;
  border-radius: 8px !important;
  padding: 20px !important;
  margin-bottom: 15px !important;
  text-align: center !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

.first-div-size p {
  margin: 0 !important;
  font-weight: 500 !important;
}

.first-div-size-1 p {
  margin: 0 !important;
  font-weight: 500 !important;
} */

.size {
  color: #846d5b !important;
  font-size: 14px !important;
  font-weight: normal !important;
}

.seventy-five {
  color: #846d5b !important;
  font-size: 24px !important;
  font-weight: bold !important;
}

/* .FuelYourDreams {
  background: linear-gradient(135deg, #e63343, #c41e3a) !important;
  color: white !important;
  padding: 15px !important;
  border-radius: 8px !important;
  text-align: center !important;
  font-weight: bold !important;
  font-size: 16px !important;
  margin-top: 15px !important;
  box-shadow: 0 4px 12px rgba(230, 51, 67, 0.3) !important;
} */

/* Fix for THE PERFECT location/sizes/price boxes */
/* .the-perfect-location {
  background: linear-gradient(135deg, #e63343, #c41e3a) !important;
  color: white !important;
  padding: 20px !important;
  border-radius: 8px !important;
  text-align: center !important;
  margin-bottom: 15px !important;
  box-shadow: 0 4px 12px rgba(230, 51, 67, 0.3) !important;
  min-height: 100px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.the-perfect {
  color: white !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  margin: 0 !important;
  line-height: 1.4 !important;
} */

/* .location {
  color: white !important;
  font-size: 16px !important;
  font-weight: bold !important;
  display: block !important;
  margin-top: 5px !important;
} */

/* Responsive adjustments */
/* @media (max-width: 767px) {
  .the-perfect-location {
    margin-bottom: 10px !important;
    padding: 15px !important;
    min-height: 80px !important;
  }
  
  .the-perfect {
    font-size: 12px !important;
  }
  
  .location {
    font-size: 14px !important;
  } */
  
  /* .first-div-size, .first-div-size-1 {
    padding: 15px !important;
    margin-bottom: 10px !important;
  } */
  
  /* .seventy-five {
    font-size: 16px !important;
  }
  
  .size {
    font-size: 12px !important;
  }
} */

/* Fix for launch-pad section styling */
/* .launch-pad {
  padding: 60px 0 !important;
  background: #ffffff !important;
}

.launch-pad-box {
  padding: 40px 20px !important;
  background: #f8f9fa !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
  margin: 20px 0 !important;
}

.img-align {
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

.img-align img {
  max-width: 120px !important;
  height: auto !important;
  margin: 0 auto !important;
  display: block !important;
}

.border-middle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 20px !important;
}

.border-middle img {
  max-width: 40px !important;
  height: auto !important;
  opacity: 0.6 !important;
}

.title-3 {
  font-size: 22px !important;
  font-weight: bold !important;
  color: #1f2937 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  text-align: left !important;
} */

/* Fix alignment and spacing */
.justify-content-center.d-flex.align-items-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}

/* Responsive adjustments for launch-pad section */
@media (max-width: 767px) {
  .launch-pad {
    padding: 40px 0 !important;
  }
  
  .launch-pad-box {
    padding: 20px 15px !important;
    margin: 10px 0 !important;
  }
  
  .title-3 {
    font-size: 18px !important;
    text-align: center !important;
    margin-top: 20px !important;
  }
  
  .border-middle {
    display: none !important;
  }
  
  .img-align img {
    max-width: 100px !important;
  }
  
  .border-middle img {
    max-width: 30px !important;
  }
}

@media (max-width: 576px) {
  .col-sm-4, .col-sm-auto, .col-sm-5 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    margin-bottom: 15px !important;
  }
}
