/* Pantone-inspired color variables */
:root {
  --primary-color: #3B6B94; /* Pantone Classic Blue */
  --secondary-color: #F5CAC3; /* Pantone Rose Quartz */
  --accent-color: #92B6D5; /* Pantone Serenity */
  --text-dark: #2B3A67; /* Deep Navy */
  --text-light: #F7F7F7; /* Off White */
  --background-light: #F9F6F7; /* Light Rose */
}

/* Enhanced Masthead Styles */
.masthead-common {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  animation: floatAnimation 15s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -50px;
  animation-delay: 3s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 30%;
  right: 10%;
  animation-delay: 6s;
}

@keyframes floatAnimation {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 0.5;
  }
}

/* Enhanced Card Styles */
.treatment-card {
  background: var(--background-light);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: all 0.3s ease;
  border: 1px solid rgba(146, 182, 213, 0.2);
  position: relative;
  overflow: hidden;
}

.treatment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.treatment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.treatment-card:hover::before {
  transform: scaleX(1);
}

.treatment-card h5 {
  color: var(--primary-color);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.treatment-card h5::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
}

.treatment-card p {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Enhanced Button Styles */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(59, 107, 148, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 107, 148, 0.4);
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Enhanced Section Styles */
.section-title {
  font-family: 'Quicksand', sans-serif;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

/* Team Section Styles */
.team-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  position: relative;
  overflow: hidden;
}

.team-section .floating-shapes .shape {
  width: 150px;
  height: 150px;
}

.team-section .btn-xl {
  background: var(--text-light);
  color: var(--primary-color);
  border: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.team-section .btn-xl:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .treatment-card {
    padding: 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .btn-primary {
    width: 100%;
    margin-top: 1rem;
  }
} 