:root {
  --primary-color: #613B41; /* Dark maroon/brown */
  --accent-color: #D6AA63; /* Gold/Mustard */
  --bg-color: #FAF5F0; /* Very light cream */
  --text-dark: #333333;
  --text-light: #7A7A7A;
  --white: #FFFFFF;
  --border-color: #E6E6E6;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Utilities */
.text-accent { color: var(--accent-color); }
.text-primary { color: var(--primary-color); }
.text-center { text-align: center; }

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: 1px solid transparent;
  letter-spacing: 0.5px;
  font-family: var(--font-body);
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.assessment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.assessment-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #4a2c31;
}

.btn-outline {
  border-color: var(--accent-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--text-light);
}

/* Topbar & Header */
.site-header {
  position: relative;
  z-index: 100;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: var(--white);
}

.topbar-logo img {
  height: 40px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.topbar-item i {
  color: var(--primary-color);
}

.topbar-login {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.topbar-login i {
  font-size: 0.9rem;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: center;
  margin-top: -1.5rem;
  position: relative;
  z-index: 101;
}

.nav-links {
  display: flex;
  background: var(--white);
  padding: 1rem 3rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--text-light);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary-color);
}

.divider {
  width: 1px;
  height: 12px;
  background-color: #E0E0E0;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 10rem 0 14rem 0;
  background-color: #F8F2E9; /* Fallback */
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 50%;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--text-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-weight: 600;
}

.pill i {
  color: var(--primary-color);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  max-width: 90%;
  line-height: 1.8;
}

/* Dots */
.carousel-dots {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.carousel-dots.center {
  justify-content: center;
}

.carousel-dots.left-aligned {
  justify-content: flex-start;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C4B5B7;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary-color);
  transform: scale(1.3);
}

/* Tabs Section */
.tabs-section {
  position: relative;
  z-index: 10;
  margin-top: -6rem;
}

.tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.tab {
  background: var(--white);
  padding: 1.5rem 3rem;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.04);
  text-align: center;
  cursor: pointer;
  min-width: 200px;
}

.tab h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tab-line {
  width: 100%;
  height: 1px;
  background: var(--text-dark);
  margin: 0.5rem 0;
  transition: var(--transition);
}

.tab:not(.active) .tab-line {
  background: transparent;
}

.tab-subtitle {
  font-size: 0.65rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--accent-color);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-text {
  color: var(--text-light);
  font-size: 0.85rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: #E0E0E0;
}

/* Booking Section */
.booking-section {
  padding: 2rem 0 6rem;
}

.booking-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group select, .form-input {
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: var(--white);
  color: var(--text-light);
  appearance: none;
  transition: var(--transition);
}

.form-group select:focus, .form-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(214, 170, 99, 0.1);
}

.select-icon, .input-icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
}

.form-btn {
  width: max-content;
  margin-top: 1rem;
}

/* Testimonials */
.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.test-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.test-left {
  position: relative;
  height: 400px;
}

.t-img {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.t-img-1 { width: 90px; height: 90px; top: 20%; left: 15%; }
.t-img-2 { width: 140px; height: 140px; top: 35%; left: 35%; }
.t-img-3 { width: 70px; height: 70px; top: 10%; left: 45%; }
.t-img-4 { width: 80px; height: 80px; bottom: 15%; left: 20%; }
.t-img-5 { width: 80px; height: 80px; bottom: 5%; left: 60%; }

.test-right {
  position: relative;
}

.test-watermark {
  position: absolute;
  right: -20%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.test-content {
  position: relative;
  z-index: 1;
}

.quote-icon {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--accent-color);
  line-height: 0.5;
  margin-bottom: 1rem;
}

.quote-icon.right {
  text-align: right;
  margin-top: -1rem;
  margin-bottom: 2rem;
}

.quote-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text-dark);
}

.author-info h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}

.author-info span {
  color: var(--text-light);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.author-info {
  margin-bottom: 1.5rem;
}

/* Team Section Slider */
.team-section {
  padding: 5rem 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

.team-slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  display: flex;
  gap: 3rem;
  align-items: center;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.team-img {
  width: 380px;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.team-info {
  flex: 1;
}

.team-info h4 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-info .role {
  color: var(--text-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 1.5rem;
}

.team-info p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: var(--primary-color);
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.social-icons a:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
}

.faq-container {
  max-width: 800px;
}

.faq-list {
  border-top: 1px solid var(--border-color);
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  font-weight: 600;
  color: #4A4A4A;
  font-size: 1.1rem;
  transition: var(--transition);
}

.faq-q:hover {
  color: var(--primary-color);
}

.faq-q i {
  color: var(--text-light);
  transition: var(--transition);
}

.faq-a {
  display: none;
  padding-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  animation: fadeIn 0.3s ease;
}

/* Programs Section */
.programs-section {
  padding: 5rem 0;
}

.programs-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #FCF8F2;
  border-radius: 12px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  align-items: center;
}

.programs-watermark {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  opacity: 0.15;
  pointer-events: none;
}

.programs-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-right: 1px solid #EBE4DB;
  padding-right: 2rem;
  z-index: 1;
}

.prog-item {
  font-size: 0.8rem;
  font-weight: 600;
  color: #BDBDBD;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.prog-item.active {
  color: var(--primary-color);
}

.programs-right {
  padding-left: 4rem;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.programs-right h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.programs-right h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.programs-right p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Brands Section */
.brands-section {
  padding: 4rem 0;
}

.brands-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Newsletter Section */
.newsletter-section {
  background: #D9A95C;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-wm-left {
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  opacity: 0.2;
  pointer-events: none;
}

.newsletter-wm-right {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  opacity: 0.2;
  pointer-events: none;
}

.nl-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.nl-left {
  color: var(--white);
}

.nl-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.nl-left h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1.2;
}

.nl-form-wrapper {
  display: flex;
  background: transparent;
  border-radius: 50px;
  border: 1px solid var(--white);
  padding: 0.25rem;
  align-items: center;
}

.nl-form-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
}

.nl-form-wrapper input::placeholder {
  color: rgba(255,255,255,0.8);
}

.nl-form-wrapper .btn {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
}

/* Responsive Media Queries */

/* Tablet */
@media (max-width: 992px) {
  .container { padding: 0 1.5rem; }

  .hero-content { max-width: 80% !important; }

  .grid-3-col { grid-template-columns: 1fr; }

  .assessment-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .assessment-checks { grid-template-columns: 1fr; }

  .programs-card {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    gap: 2rem;
  }
  .programs-left {
    border-right: 0;
    padding-right: 0;
    border-bottom: 1px solid #EBE4DB;
    padding-bottom: 1.5rem;
  }
  .programs-right { padding-left: 0; }
  .programs-watermark { display: none; }

  .team-card { flex-direction: column !important; gap: 2rem !important; }
  .team-img { width: 100%; height: auto; }

  .nl-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .nl-left h2 { font-size: 2.25rem !important; }
  .newsletter-wm-left, .newsletter-wm-right { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* Mobile */
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }

  /* Header — hide the duplicate Start/Book buttons on mobile (the same CTAs
     live in the hero below) but KEEP the Member login link, since there's no
     login button anywhere else. */
  .topbar {
    padding: 1rem 1.25rem;
    justify-content: space-between;
  }
  .topbar-logo { flex: none; }
  .topbar-logo img { height: 30px; }
  .topbar-right {
    display: flex !important;
    width: auto;
    gap: 0 !important;
  }
  .topbar-right .btn { display: none !important; }
  .topbar-login { display: inline-flex !important; }

  /* Hero — show the photo at its natural aspect ratio (no zoom) anchored at
     the bottom, with a soft fade so the copy on top stays readable. The cream
     background-color fills the empty area above the photo. */
  .hero {
    padding: 3rem 0 0 0;
    background-image: linear-gradient(to bottom, rgba(253, 249, 244, 0.94) 0%, rgba(253, 249, 244, 0.85) 40%, rgba(253, 249, 244, 0.50) 60%, rgba(253, 249, 244, 0.0) 80%), url('assets/hero_abstract.png') !important;
    background-position: center bottom !important;
    background-size: 100% auto !important;
    background-repeat: no-repeat !important;
    background-color: var(--bg-color) !important;
    padding-bottom: 60vw !important;
  }
  .hero-content { max-width: 100% !important; }
  .hero h1 {
    font-size: 2.25rem !important;
    line-height: 1.15 !important;
  }
  .hero p { font-size: 1rem !important; margin-bottom: 1.75rem !important; }
  .hero .pill { font-size: 0.65rem !important; padding: 0.4rem 0.9rem !important; }
  .hero-content > div[style*="display: flex"] {
    flex-direction: column;
    align-items: stretch !important;
    gap: 0.75rem !important;
    margin-bottom: 2rem !important;
  }
  .hero-content .btn {
    width: 100%;
    padding: 0.9rem 1.5rem !important;
    font-size: 0.85rem !important;
  }
  .hero-content > div[style*="flex-wrap: wrap"] {
    font-size: 0.85rem !important;
    gap: 0.75rem !important;
  }

  /* Section paddings */
  .difference-section,
  .pathway-section,
  .assessment-section,
  .programs-section,
  .team-section,
  .booking-section,
  .newsletter-section,
  .brands-section {
    padding: 3.5rem 0 !important;
  }

  /* Headings */
  .difference-section h2,
  .pathway-section h2 {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
  }
  .difference-section p, .pathway-section p { font-size: 0.95rem !important; }

  .grid-3-col > div { padding: 2rem !important; }
  .grid-3-col h3 { font-size: 1.2rem !important; }
  .grid-3-col p { font-size: 0.9rem !important; }

  /* Booking form */
  .booking-title { font-size: 1.4rem !important; line-height: 1.3 !important; }
  .form-row { grid-template-columns: 1fr !important; gap: 1rem !important; }
  .form-btn { width: 100% !important; }

  /* Assessment CTA section */
  .assessment-section h2 {
    font-size: 2rem !important;
    line-height: 1.15 !important;
  }
  .assessment-section h2 br { display: none; }
  .assessment-section p { font-size: 1rem !important; }
  .assessment-right { padding: 2rem !important; }
  .assessment-right h3 { font-size: 1.35rem !important; }
  .assessment-right .btn { padding: 1.1rem !important; font-size: 1rem !important; }

  /* Programs card */
  .programs-card { padding: 1.75rem !important; }
  .programs-right h3 { font-size: 1.5rem !important; }
  .programs-right h4 { font-size: 0.95rem !important; }
  .programs-right p { font-size: 0.9rem !important; }

  /* Dr. Ganta */
  .team-info h4 { font-size: 1.6rem !important; }
  .team-info h5 { font-size: 1.05rem !important; }
  .team-card > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .team-card div[style*="position: absolute"] {
    position: static !important;
    text-align: center;
    margin-top: 0.75rem;
  }

  /* Brands strip */
  .brands-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 2rem;
  }
  .brand-logo { font-size: 1.4rem !important; }

  /* Newsletter */
  .nl-left h2 { font-size: 1.75rem !important; }
  .nl-form-wrapper {
    flex-direction: column;
    border-radius: 14px;
    padding: 0.5rem;
    gap: 0.5rem;
  }
  .nl-form-wrapper input {
    padding: 0.9rem 1rem;
    background: rgba(255,255,255,0.18);
    border-radius: 10px;
  }
  .nl-form-wrapper .btn { width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .footer-col { text-align: left; }
  .links-grid { gap: 1.5rem; }
}

/* Extra-small phones */
@media (max-width: 420px) {
  .hero h1 { font-size: 1.85rem !important; }
  .assessment-section h2 { font-size: 1.6rem !important; }
  .difference-section h2, .pathway-section h2 { font-size: 1.45rem !important; }
  .booking-title { font-size: 1.2rem !important; }
}

/* Footer Section */
.site-footer {
  background: var(--white);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 0.85rem;
  align-items: flex-start;
}

.contact-list i {
  color: var(--primary-color);
  margin-top: 0.25rem;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #FAF5F0;
  border-radius: 6px;
  color: var(--primary-color);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.links-grid {
  display: flex;
  gap: 3rem;
}

.links-grid ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.links-grid a {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #F0F0F0;
  padding-bottom: 0.5rem;
}

.hours-time {
  color: var(--accent-color);
}

/* Animations & Hover Effects */

/* Reveal on Scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active-reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Hover Utils */
.hover-scale {
  transition: transform 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hover-text {
  transition: color 0.3s ease;
  cursor: pointer;
}
.hover-text:hover {
  color: var(--primary-color) !important;
}

.hover-img-scale {
  transition: transform 0.5s ease;
}
.team-card:hover .hover-img-scale {
  transform: scale(1.03);
}
