/* OHR Global Wellbeing - Complete CSS */
/* Design system extracted from Tailwind configuration */
:root {
  /* Colors - OHR Brand (Gold & White) */
  --primary: hsl(42, 55%, 45%);        /* Luxury Gold */
  --primary-fg: hsl(0, 0%, 100%);      /* White text on gold */

  /* Accent / Action */
  --gold-light: hsl(42, 60%, 65%);
  --gold-dark: hsl(42, 55%, 35%);

  /* WhatsApp (keep brand green – do NOT change) */
  --whatsapp: hsl(142, 70%, 49%);
  --whatsapp-dark: hsl(142, 70%, 39%);

  /* Backgrounds */
  --bg: hsl(0, 0%, 100%);              /* Pure white */
  --fg: hsl(30, 8%, 15%);              /* Dark readable text */
  --card: hsl(40, 20%, 97%);            /* Soft warm white */
  --muted: hsl(40, 15%, 90%);
  --muted-fg: hsl(30, 10%, 35%);

  /* Borders & Effects */
  --border: hsl(40, 20%, 85%);
  --shadow: 0 2px 4px rgba(0,0,0,0.08);
  --shadow-lg: 0 6px 18px rgba(0,0,0,0.12);

  /* Typography */
  --font-sans: 'Inter', -apple-system, sans-serif;
  --font-serif: 'Lora', Georgia, serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 80px 0;
}

.bg-card {
  background: var(--card);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo:hover { opacity: 0.8; }

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-subtitle {
  font-size: 0.875rem;
  color: var(--muted-fg);
  display: none;
}

@media (min-width: 640px) {
  .logo-subtitle { display: block; }
}

.nav-desktop {
  display: none;
  gap: 0.25rem;
}

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

.nav-link {
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: var(--fg);
  border-radius: 0.5rem;
  transition: all 0.2s;
  font-weight: 500;
}

.nav-link:hover {
  background: var(--muted);
}

.nav-link.active {
  background: var(--card);
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-icon {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: none;
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-icon:hover {
  background: var(--muted);
}

@media (min-width: 640px) {
  .btn-icon { display: flex; }
}

.btn-whatsapp {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) {
  .btn-whatsapp { display: flex; }
}

.btn-mobile-menu {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: none;
  background: transparent;
  color: var(--fg);
  cursor: pointer;
}

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

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: white;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--fg);
  border-radius: 0.5rem;
  transition: background 0.2s;
  font-weight: 500;
}

.mobile-nav-link:hover {
  background: var(--muted);
}

.btn-whatsapp-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--card);
  color: var(--fg);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--muted);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-fg);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Trust Signals */
.trust-signals {
  padding: 3rem 0;
  background: linear-gradient(to bottom, var(--bg), var(--card));
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.trust-item {
  text-align: center;
}

.trust-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
}

.trust-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.trust-item p {
  color: var(--muted-fg);
  font-size: 0.875rem;
}

/* Section Titles */
.section-title {
  margin-bottom: 1rem;
  text-align: center;
}

.section-description {
  text-align: center;
  color: var(--muted-fg);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.text-center { text-align: center; }
.mb-20 { margin-bottom: 1.25rem; }
.mb-40 { margin-bottom: 2.5rem; }
.mb-50 { margin-bottom: 3rem; }
.mt-40 { margin-top: 2.5rem; }
.text-muted { color: var(--muted-fg); }

/* Brand Cards */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.brand-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  text-decoration: none;
  display: block;
  transition: transform 0.3s;
  box-shadow: var(--shadow);
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.brand-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.brand-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
}

.brand-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.brand-content p {
  opacity: 0.9;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 1rem;
  margin-top: 0.5rem;
}

.brand-card.coming-soon {
  opacity: 0.8;
  cursor: default;
}

.brand-card.coming-soon:hover {
  transform: none;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/*.service-card {*/
/*  padding: 2rem;*/
/*  background: white;*/
/*  border: 1px solid var(--border);*/
/*  border-radius: 1rem;*/
/*  transition: box-shadow 0.3s;*/
/*}*/

/*.service-card:hover {*/
/*  box-shadow: var(--shadow-lg);*/
/*}*/

/*.service-card.featured {*/
/*  border-color: var(--primary);*/
/*  border-width: 2px;*/
/*}*/

/*.service-card h3 {*/
/*  margin-bottom: 1rem;*/
/*  color: var(--primary);*/
/*}*/

/*.service-meta {*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: center;*/
/*  margin-top: 1.5rem;*/
/*  padding-top: 1.5rem;*/
/*  border-top: 1px solid var(--border);*/
/*}*/

/*.price {*/
/*  font-size: 1.5rem;*/
/*  font-weight: 700;*/
/*  color: var(--primary);*/
/*}*/

/* Two Column Layout */
/*.two-column {*/
/*  display: grid;*/
/*  grid-template-columns: 1fr;*/
/*  gap: 3rem;*/
/*  align-items: center;*/
/*}*/


/* --- Base Card Refinements --- */
.service-card {
  /* Using a subtle background that isn't stark white */
  padding: 1rem; /* Remove padding from the main container to let the image bleed to the edge */
  background: #fdfdfd; /* Off-white for a softer look */
  border: 1px solid #e0e0e0; /* Lighter border */
  border-radius: 1.25rem; /* Increased border radius for a modern, smooth feel */
  overflow: hidden; /* Crucial for image to fit neatly within the border radius */
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* Elevated, softer shadow on hover */
  transform: translateY(-2px); /* Slight lift effect */
}

/* --- Image Styling (Header) --- */
.service-image {
    width: 100%;
    height: 300px; /* FIXED HEIGHT: Adjust this value as needed (e.g., 250px, 180px) */
    overflow: hidden; /* Ensures the zoomed content is clipped neatly */
}

.service-image .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ZOOM EFFECT: This makes the image fill the container and crop if necessary */
    display: block;
}

/* --- Content Styling --- */
.service-content {
    padding: 1rem 1rem 0.5rem 1rem; /* Padding applied here, not on the card */
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.65rem;
  color: var(--primary, #007bff); /* Ensure color consistency */
}

.service-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
}

/* --- Meta/Duration Styling --- */
.service-meta {
  padding: 1rem 1.5rem; /* Consistent side padding */
  display: flex;
  justify-content: flex-start; /* Align duration to the left */
  align-items: center;
  /* Removed top border for a cleaner look before the actions */
}

.duration-display {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333; /* Darker text for focus */
}

.duration-display i {
    margin-right: 0.5rem;
    color: var(--primary, #007bff); /* Primary color for the icon */
}

/* --- Button Action Footer --- */
.service-actions {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.5rem; /* Padding for the button area */
    border-top: 1px solid #f0f0f0; /* Very subtle separator above buttons */
    background: #fafafa; /* Slight background difference for the footer area */
}

.service-actions .action-btn {
    flex-grow: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem; /* Rounded button corners */
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

/* Primary Button Style (Book Now) */
.service-actions .btn-primary {
    background-color: var(--primary, #007bff);
    color: white;
    border: 1px solid var(--primary, #007bff);
}

.service-actions .btn-primary:hover {
    background-color: #0056b3; /* Darker primary on hover */
}

/* Secondary Button Style (Call) */
.service-actions .btn-secondary {
    background-color: white;
    color: var(--primary, #007bff);
    border: 1px solid var(--primary, #007bff);
}

.service-actions .btn-secondary:hover {
    background-color: #e0f7ff; /* Light primary background on hover */
}

/* Two Column Layout (kept original) */
.two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-column {
    grid-template-columns: 1fr 1fr;
  }
  
  .two-column.reverse {
    direction: rtl;
  }
  
  .two-column.reverse > * {
    direction: ltr;
  }
}

.rounded-image {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-list li {
  padding: 0.5rem 0;
  font-size: 1.125rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author strong {
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: var(--muted-fg);
  font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary), hsl(0deg 0% 51.93%));
  color: white;
}

.cta-title {
  color: white;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-section .btn-primary {
  background: white;
  color: var(--primary);
}

.cta-section .btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.cta-section .btn-secondary:hover {
  background: white;
  color: var(--primary);
}

/* Footer */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-text {
  color: var(--muted-fg);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: var(--muted);
  color: var(--fg);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--muted-fg);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-fg);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-hours {
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-top: 0.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter-form input {
  padding: 0.625rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-family: inherit;
}

.newsletter-form button {
  width: 100%;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal a,
.footer-credit a {
  color: var(--muted-fg);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover,
.footer-credit a:hover {
  color: var(--primary);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color:  black;
}

.service-content p {
  flex-grow: 1;
  color: #444;
  line-height: 1.6;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.price {
  font-weight: 700;
  color: #00695c;
}

.duration {
  color: #666;
  font-size: 0.95rem;
}



.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

/* Styles for the Popular badge */
.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10; /* Ensures it sits above the image */
    background-color: var(--secondary-color, #ffc107); /* Example: Bright yellow/gold color */
    color: #333;
    padding: 0.3rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Optional: Style for cards marked as popular */
.service-card.popular {
    border: 2px solid var(--secondary-color, #ffc107); /* Highlight the border */
}


/* Responsive */
@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}


.link-point{
    color:black;
}
.link-point:hover {
    color: var(--primary);
}

