/* ===================================
   PROFESSIONAL STYLE GUIDE
   Best Practices Implementation
   =================================== */

/* COLOR VARIABLES */
:root {
  --primary-color: #0f3460;
  --secondary-color: #e94560;
  --accent-color: #00d4ff;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ===================================
   RESET AND BASE STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  min-height: 100vh;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.Emma {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.Mr-Jerry {
  background-color: #fce703;
}

/* ===================================
   CONTAINER AND LAYOUT
   =================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===================================
   HEADER STYLES
   =================================== */
header {
  background: var(--bg-white);
  padding: 8px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

header .container {
  width: 100%;
  gap: 40px;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--secondary-color);
}

/* ===================================
   NAVIGATION STYLES
   =================================== */
nav {
  display: flex;
  margin-left: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-block;
}

.nav-links li a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links li a:hover {
  color: var(--secondary-color);
  background: rgba(233, 69, 96, 0.05);
}

.nav-links li a:hover::after {
  width: calc(100% - 32px);
}

/* ===================================
   HAMBURGER MENU
   =================================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  gap: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2.5px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d7a 100%);
  color: var(--bg-white);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.hero .container {
  flex-direction: column;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  font-weight: 300;
  opacity: 0.95;
  max-width: 600px;
}

.cta-btn {
  background: var(--secondary-color);
  color: var(--bg-white);
  padding: 14px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--secondary-color);
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  margin: 0 12px 12px 0;
  letter-spacing: 0.5px;
}

.cta-btn:hover {
  background: transparent;
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(233, 69, 96, 0.3);
}

.cta-btn.secondary {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--primary-color);
}

.cta-btn.secondary:hover {
  background: transparent;
  color: var(--accent-color);
  box-shadow: 0 6px 16px rgba(0, 212, 255, 0.3);
}
/* ===================================
   FEATURES SECTION
   =================================== */
.features {
  padding: 80px 20px;
  background: var(--bg-white);
}

.features .container {
  flex-direction: column;
  width: 100%;
  gap: 0;
}

.features-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.feature h3 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.feature p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ===================================
   FOOTER
   =================================== */
footer {
  background: var(--primary-color);
  color: var(--bg-white);
  text-align: center;
  padding: 40px 20px;
  width: 100%;
  margin-top: 80px;
  border-top: 4px solid var(--secondary-color);
}

footer .container {
  flex-direction: column;
  gap: 20px;
  max-width: 100%;
}

footer p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

footer a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--secondary-color);
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
  text-align: center;
}

.mt-60 {
  margin-top: 60px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */
.about-section {
  padding: 80px 20px;
  background: var(--bg-white);
}

.about-section .container {
  flex-direction: column;
  max-width: 900px;
}

.about-section h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.section-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
}

/* Value Sections - Mission & Vision */
.value-section {
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-section.mission {
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.08) 0%, rgba(233, 69, 96, 0.08) 100%);
}

.value-section.vision {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(233, 69, 96, 0.08) 100%);
}

.value-card {
  background: var(--bg-white);
  padding: 60px 50px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 700px;
  border-top: 4px solid var(--secondary-color);
}

.value-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
}

.value-card h2 {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.value-card p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

/* Goals Section */
.goals-section {
  padding: 80px 20px;
  background: var(--bg-white);
}

.goals-section .container {
  flex-direction: column;
  max-width: 1200px;
}

.goals-section h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  width: 100%;
}

.goal-card {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  padding: 40px 32px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  padding-top: 80px;
}

.goal-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

.goal-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
}

.goal-card h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.goal-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Core Values Highlight */
.values-highlight {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d7a 100%);
}

.values-highlight .container {
  flex-direction: column;
  max-width: 1200px;
}

.values-highlight h2 {
  color: var(--bg-white);
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  width: 100%;
}

.value-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 32px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.value-item h3 {
  color: var(--bg-white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.value-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(233, 69, 96, 0.1) 100%);
  text-align: center;
}

.cta-section .container {
  flex-direction: column;
  max-width: 700px;
  gap: 30px;
}

.cta-section h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0;
}

.cta-section p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin: 0;
}

/* ===================================
   BOOKING FORM SECTION
   =================================== */
.booking {
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
  padding: 80px 20px;
}

.booking .container {
  flex-direction: column;
  max-width: 700px;
}

.booking-content {
  background: var(--bg-white);
  padding: 60px 50px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.booking-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.booking-content::after {
  content: '';
  position: absolute;
  inset: 18px;
  background: url("./New image file/TBL LOGO.png") center/contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.booking-content > * {
  position: relative;
  z-index: 1;
}

.booking-content h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: -0.5px;
}

.booking-content > p {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 35px;
  font-weight: 500;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  min-width: 0;
}

.form-group label {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: inline-block;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  color: var(--text-dark);
  background: var(--bg-white);
  font-weight: 500;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #bbb;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.15);
  background: #fff;
}

.form-group input::placeholder {
  color: #999;
  font-weight: 400;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.full-width,
.booking-form .submit-btn,
.booking-note {
  grid-column: 1 / -1;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}

.submit-btn {
  background: linear-gradient(135deg, var(--secondary-color), #ff6b7a);
  color: var(--bg-white);
  padding: 16px 40px;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.25);
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.35);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
  /* Header */
  header {
    padding: 12px 0;
  }

  .logo {
    font-size: 1.25rem;
  }

  /* Show hamburger menu */
  .menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    z-index: 1001;
  }

  /* Mobile Navigation */
  nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: auto;
    width: 260px;
    background: var(--bg-white);
    flex-direction: column;
    padding: 0;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.2s ease;
    border-radius: 8px;
    border: 0;
  }

  nav.active {
    max-height: 500px;
    padding: 8px 0;
    box-shadow: var(--shadow-md);
    opacity: 1;
    pointer-events: auto;
    border: 1px solid var(--border-color);
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    padding: 14px 20px;
    border-radius: 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links li a::after {
    display: none;
  }

  .nav-links li a:hover {
    background: rgba(233, 69, 96, 0.08);
  }

  /* Hero */
  .hero {
    padding: 60px 20px;
  }

  .hero h2 {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .cta-btn {
    padding: 12px 32px;
    font-size: 0.95rem;
  }

  /* Features */
  .features {
    padding: 60px 20px;
  }

  .features-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature {
    padding: 32px 24px;
  }

  /* Booking */
  .booking {
    padding: 60px 20px;
  }

  .booking-content {
    padding: 40px 30px;
  }

  .booking-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .booking-content > p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .submit-btn {
    padding: 14px 32px;
    font-size: 0.95rem;
    margin-top: 15px;
  }

  /* About Page */
  .about-section h2 {
    font-size: 1.8rem;
  }

  .value-card {
    padding: 40px 30px;
  }

  .value-card h2 {
    font-size: 1.6rem;
  }

  .goals-section h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .goals-grid {
    gap: 24px;
  }

  .values-highlight h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .cta-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    margin: 0 6px 10px 0;
  }

  .features {
    padding: 40px 16px;
  }

  .feature {
    padding: 24px 16px;
  }

  .feature h3 {
    font-size: 1.1rem;
  }

  .feature p {
    font-size: 0.9rem;
  }

  /* Booking */
  .booking {
    padding: 40px 16px;
  }

  .booking-content {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .booking-content::after {
    inset: 14px;
    background-size: 92% auto;
  }

  .booking .container {
    padding: 0;
  }

  .booking-content h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .booking-content > p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .booking-form {
    gap: 16px;
  }

  .booking-form,
  .form-group,
  .submit-btn {
    width: 100%;
  }

  .form-group label {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 12px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  .form-group select {
    padding-right: 35px;
  }

  .submit-btn {
    padding: 12px 24px;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    margin-top: 12px;
    border-radius: 8px;
  }

  /* About Page Mobile */
  .about-section {
    padding: 40px 16px;
  }

  .about-section h2 {
    font-size: 1.4rem;
  }

  .section-content p {
    font-size: 0.95rem;
  }

  .value-section {
    padding: 50px 16px;
  }

  .value-card {
    padding: 30px 20px;
  }

  .value-card h2 {
    font-size: 1.4rem;
  }

  .value-card p {
    font-size: 0.95rem;
  }

  .goal-card {
    padding: 35px 20px 20px 20px;
  }

  .goal-number {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .goal-card h3 {
    font-size: 1.1rem;
  }

  .goal-card p {
    font-size: 0.9rem;
  }

  .values-highlight {
    padding: 50px 16px;
  }

  .values-highlight h2 {
    font-size: 1.4rem;
  }

  .value-item {
    padding: 30px 20px;
  }

  .value-item h3 {
    font-size: 1.2rem;
  }

  .cta-section {
    padding: 50px 16px;
  }

  .cta-section h2 {
    font-size: 1.4rem;
  }

  .cta-section p {
    font-size: 0.95rem;
  }

  footer {
    padding: 30px 16px;
  }
}

/* ===================================
   ACCESSIBILITY
   =================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states for keyboard navigation */
button:focus,
a:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}


