/* =========================
   GLOBAL STYLES
========================= */
:root {
  --primary: #00bcd4;
  --primary-dark: #0097a7;
  --secondary: #ff5722;
  --dark: #0a0a0a;
  --dark-light: #111;
  --light: #f0f0f0;
  --gray: #888;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

.preload * {
  transition: none !important;
}

.loaded {
  transition: all 0.3s ease;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.btn {
  background: var(--primary);
  color: #000;
  padding: 12px 25px;
  border-radius: 5px;
  display: inline-block;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.btn-outline {
  display: inline-block; 
  border: 2px solid var(--primary);
  margin-top: 10px;
  padding: 10px 23px;
  border-radius: 5px;
  color: var(--primary);
  background: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--primary);
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   HEADER
========================= */

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px; /* Adjust spacing between logo and text */
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.logo-img {
  height: 60px;
  width: auto;
}

.logo h1 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--primary);
}

.logo p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray);
}


header {
  background: var(--dark);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  width: 100%;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.3s ease;
}

.main-nav a {
  color: var(--light);
  font-weight: 500;
  padding: 5px 10px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.main-nav a:hover {
  color: var(--primary);
  text-shadow: 0 0 8px var(--primary);
}




.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}

/* =========================
   HERO SLIDER
========================= */
.hero-slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.slider-container {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 80%;
  max-width: 800px;
  padding: 20px;
  z-index: 2;
}

.slide-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.slider-prev,
.slider-next {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--primary);
  color: #000;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* =========================
   SERVICES
========================= */
.services {
  padding: 100px 0;
  background: var(--dark);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--dark-light);
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 188, 212, 0.2);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-top: 0;
  color: var(--primary);
}

.service-card span {
  display: inline-block;
  margin-top: 15px;
  font-weight: bold;
  color: var(--primary);
}

.note {
  background: rgba(0, 188, 212, 0.1);
  padding: 20px;
  margin-top: 40px;
  border-radius: 10px;
  border-left: 4px solid var(--primary);
}

.note h4 {
  margin-top: 0;
  color: var(--primary);
}

/* =========================
   WHY CHOOSE US
========================= */
.why-us {
  padding: 100px 0;
  background: var(--dark-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.why-card {
  background: var(--dark);
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.why-card h3 {
  color: var(--primary);
  margin-top: 0;
}

/* =========================
   OUR SECTORS
========================= */
.sectors {
  padding: 100px 0;
  background: var(--dark);
}

.sector-tabs {
  background: var(--dark-light);
  border-radius: 10px;
  overflow: hidden;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #333;
}

.tab-btn {
  padding: 15px 25px;
  background: transparent;
  border: none;
  color: var(--light);
  font-weight: bold;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.tab-btn.active {
  color: var(--primary);
}

.tab-btn.active::after {
  width: 100%;
}

.tab-btn:hover {
  color: var(--primary);
  background: rgba(0, 188, 212, 0.1);
}

.tab-content {
  display: none;
  padding: 30px;
}

.tab-content.active {
  display: block;
}

.tab-content-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.tab-text h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-top: 0;
}

.tab-text ul {
  padding-left: 20px;
  list-style-type: none;
}

.tab-text li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.tab-text li::before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
}

.tab-image {
  border-radius: 10px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* =========================
   ABOUT
========================= */
.about {
  padding: 100px 0;
  background: var(--dark-light);
}

.about p {
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: center;
}

.about-content {
  max-width: 900px;
  margin: 0 auto 50px;
}

.about-highlights {
  background: rgba(0, 188, 212, 0.1);
  padding: 25px;
  border-radius: 10px;
  margin: 30px 0;
  border-left: 4px solid var(--primary);
}

.about-highlights h3 {
  color: var(--primary);
  margin-top: 0;
}

.about-values {
  background: var(--dark);
  padding: 25px;
  border-radius: 10px;
}

.about-values h3 {
  color: var(--primary);
  margin-top: 0;
}

.about-values ul {
  padding-left: 20px;
  list-style-type: none;
}

.about-values li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.about-values li::before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.about-card {
  background: var(--dark);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 188, 212, 0.2);
}

.about-card h3 {
  color: var(--primary);
}

/* =========================
   CONTACT
========================= */
.contact {
  padding: 100px 0;
  background: var(--dark);
}

.contact-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
/* White calendar icon */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.2s ease;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--dark-light);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 15px;
  background: var(--dark);
  border: 1px solid #333;
  border-radius: 5px;
  color: var(--light);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
}

.booking-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  background: var(--dark-light);
  padding: 30px;
  border-radius: 10px;
}

.contact-info h3 {
  margin-top: 0;
  color: var(--primary);
}

.contact-detail {
  margin-bottom: 20px;
}

.contact-detail h4 {
  color: var(--primary);
  margin-bottom: 5px;
}

.contact-detail a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail a:hover {
  color: var(--primary);
}

.opening-hours {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.opening-hours h4 {
  margin-bottom: 15px;
  color: var(--primary);
}

.emergency-contact {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.emergency-contact h4 {
  color: var(--primary);
}

/* =========================
   FOOTER
========================= */
footer {
  background: var(--dark);
  padding: 60px 0 0;
  color: var(--light);
  position: relative;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.footer-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-column h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  transform: translateY(-5px);
  background: var(--primary-dark);
}

.subscribe {
  display: flex;
  gap: 10px;
}

.subscribe input {
  flex: 1;
  padding: 10px;
  background: var(--dark-light);
  border: 1px solid #333;
  border-radius: 5px;
  color: var(--light);
}

.subscribe button {
  padding: 10px 20px;
  background: var(--primary);
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe button:hover {
  background: var(--primary-dark);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: var(--gray);
  position: relative;
  z-index: 1;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* =========================
   RESPONSIVE STYLES
========================= */
@media (max-width: 992px) {
  .contact-flex,
  .tab-content-inner {
    grid-template-columns: 1fr;
  }

  .tab-image {
    height: 200px;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .header-flex {
    flex-direction: row;
    gap: 15px;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }

  .main-nav.show {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .tab-buttons {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
  }

  .tab-buttons::-webkit-scrollbar {
    height: 5px;
  }

  .tab-buttons::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
  }
}

@media (max-width: 576px) {
  .slide-content h2 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .logo {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .logo-img {
    margin: 0 auto;
  }
}

/* Form specific styles */
form {
  background: var(--dark-light);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  animation: fadeIn 1s ease-in-out;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 12px 0;
  border: 1px solid #333;
  border-radius: 10px;
  font-size: 15px;
  background: var(--dark);
  color: var(--light);
  transition: all 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(0, 188, 212, 0.6);
  outline: none;
}

form textarea {
  resize: none;
  min-height: 120px;
}

form button {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  border: none;
  border-radius: 10px;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

form button:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.5);
}