@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');

:root {
  --primary-color: #004225;
  --secondary-color: #5d9a42;
  --dark-color: #002240;
  --light-color: #f4f4f4;
}

*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;

}

body {
  font-family: 'Libre Baskerville', serif;
  color: #333;
  line-height: 1.6;
}

ul {
  list-style-type: none;
}

a{
  text-decoration: none;
  color: #333;
}

h1, h2{
  font-weight: 300;
  line-height: 1.2;
  margin: 10px 0;
}

p{
  margin: 10px 0;
}

img {
  width: 100%;
}

/* HERO / LANDING */
.hero .container{
  max-width: none;
  padding: 0;
  height: 600px;
}
.hero .container img{
  max-height: 100%;
  display: block;
}
.hero-text{
  position: absolute;
  color: #fff;
  z-index: 999;
  top: 40%;
  left: 10%;
  max-width: 800px;
}
.hero-text h1{
  font-size: 40px;
}
.hero-text a{
  border: 1px solid #fff;
}

/* NAVBAR */
.navbar {
  background-color: var(--primary-color);
  color: #fff;
  height: 70px;
}
.navbar ul{
  display: flex;
}

.navbar a{
  color: #fff;
  padding: 10px;
  margin: 0 5px;
}

.navbar a:hover{
  border-bottom: 2px #fff solid;
}

.navbar .flex{
  justify-content: space-between;
}

.navbar a.logo,
.navbar a:has(.logo) {
  color: #fff;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.navbar a:has(.logo):hover {
  border-bottom: none;
  opacity: 0.9;
  cursor: pointer;
}

/* SHOWCASE */
.showcase {
  background-color: var(--primary-color);
  min-height: 490px;
  padding: 40px 0;
  color: #fff;
  position: relative;
}

.showcase h1 {
  font-size: 30px;
}

.showcase p{
  margin: 20px 0;
  font-size: 15px;
  line-height: 1.6;
}


.showcase .grid{
  grid-template-columns: 60% 40%;
  grid-gap: 30px;
  overflow: visible;
}

.showcase-form {
  position:relative;
  top: 80px;
  height: 350px;
  width: 400px;
  padding: 40px;
  z-index: 100;
  justify-self: flex-end;
}

.showcase-form .form-control{
  margin: 30px 0;
}

.showcase-form input[type="text"],
.showcase-form input[type="email"] {
  border: 0;
  border-bottom: 1px solid #b4becb;
  width: 100%;
  padding: 3px;
  font-size: 16px;
}

.showcase-form input:focus {
  outline: none;
}

.showcase::before,
.showcase::after{
  content: "";
  position: absolute;
  height: 100px;
  bottom: -70px;
  right: 0;
  left: 0;
  background-color: white;
  transform: skewY(-1.8deg);
  -webkit-transform: skewY(-1.8deg);
  -moz-transform: skewY(-1.8deg);
  -ms-transform: skewY(-1.8deg);
}

/* STATS */
.stats {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.stats-heading {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 32px;
  color: var(--dark-color);
  line-height: 1.4;
}

.stats-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Profile Showcase */
.profile-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin: 0 auto;
}

.profile-image-wrapper {
  position: relative;
  flex-shrink: 0;
}

.profile-image-wrapper img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary-color);
  box-shadow: 0 8px 25px rgba(0, 66, 37, 0.2);
}

.profile-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
  border: 3px solid #fff;
}

.profile-badge i {
  color: #fff;
  font-size: 20px;
}

.profile-credentials {
  text-align: left;
}

.profile-credentials h3 {
  font-size: 28px;
  color: var(--dark-color);
  margin-bottom: 8px;
  font-weight: 600;
}

.credential-title {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.credential-verification {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 500;
}

.credential-verification i {
  font-size: 18px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.stat-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 66, 37, 0.08);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 66, 37, 0.12);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 66, 37, 0.2);
}

.stat-icon i {
  color: #fff;
  font-size: 26px;
}

.stat-content h3 {
  font-size: 20px;
  color: var(--dark-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.stat-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* KLINIK */
.clinic {
  padding: 80px 0;
  background: #fff;
}

.clinic-header {
  margin-bottom: 50px;
}

.clinic-header h2 {
  font-size: 36px;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.clinic-subtitle {
  font-size: 18px;
  color: #666;
  font-style: italic;
}

.clinic-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.clinic-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  height: 100%;
}

.clinic-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.clinic-image-wrapper:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 30px;
}

.overlay-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.overlay-badge i {
  color: var(--primary-color);
  font-size: 20px;
}

.overlay-badge span {
  font-weight: 600;
  color: var(--dark-color);
  font-size: 16px;
}

.clinic-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 66, 37, 0.1);
  transition: all 0.3s ease;
  display: flex;
  gap: 20px;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 66, 37, 0.15);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 66, 37, 0.2);
}

.info-icon i {
  color: #fff;
  font-size: 26px;
}

.booking-icon {
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

.info-content {
  flex: 1;
}

.info-content h3 {
  font-size: 22px;
  color: var(--dark-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.info-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.location-details {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(0, 66, 37, 0.05);
  border-radius: 8px;
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 15px;
}

.location-details i {
  font-size: 18px;
}

.booking-options {
  margin-top: 20px;
}

.booking-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 107, 107, 0.05);
  border-radius: 10px;
  color: #FF6B6B;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
}

.booking-option i {
  font-size: 20px;
}

.booking-divider {
  text-align: center;
  color: #999;
  font-style: italic;
  margin: 15px 0;
  font-size: 14px;
}

.booking-options .btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  padding: 14px 25px;
}

/* TERAPI */
.terapi {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.terapi::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.terapi-header {
  margin-bottom: 50px;
}

.terapi-header h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 15px;
}

.terapi-intro {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
}

.terapi-content {
  position: relative;
  z-index: 1;
}

.terapi-main {
  max-width: 900px;
  margin: 0 auto;
}

/* Areas Section */
.terapi-areas {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.terapi-areas h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.terapi-areas h3 i {
  color: #FFD700;
  font-size: 26px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.area-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.area-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.area-item i {
  color: var(--secondary-color);
  font-size: 12px;
  margin-top: 5px;
  flex-shrink: 0;
}

.area-item span {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

/* Approach Section */
.terapi-approach {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.approach-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.approach-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.approach-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.approach-icon i {
  font-size: 28px;
  color: #FFD700;
}

.approach-content h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.approach-content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* CTA Buttons */
.terapi-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.terapi-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-light {
  background: #fff;
  color: var(--primary-color);
  border: none;
}

.btn-light:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* KLIENTUDTALELSER */
.client {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.client-header {
  max-width: 700px;
  margin: 0 auto 50px;
}

.client-header h2 {
  font-size: 36px;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.client-subtitle {
  font-size: 18px;
  color: #666;
  font-style: italic;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px 30px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(0, 66, 37, 0.08);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 66, 37, 0.15);
}

.quote-icon {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 66, 37, 0.2);
}

.quote-icon i {
  color: #fff;
  font-size: 20px;
}

.testimonial-content {
  flex: 1;
  margin-top: 20px;
}

.testimonial-content blockquote {
  font-size: 18px;
  line-height: 1.6;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
}

.testimonial-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px solid rgba(0, 66, 37, 0.1);
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-right: 15px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0, 66, 37, 0.2);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 0 4px 0;
}

.author-age {
  font-size: 13px;
  color: #888;
  font-style: italic;
}

/* FOOTER */
.footer-contact{
  font-size: 10px;
}

/* MOBILE NAVIGATION */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
}

.hamburger {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.nav-toggle.active .hamburger {
  background-color: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* CONTAINER */
  .container {
    padding: 0 20px;
  }

  /* NAVIGATION */
  .navbar .container {
    padding: 0 20px;
  }

  .navbar .flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .navbar .logo {
    font-size: 20px;
  }

  .nav-toggle {
    display: block;
  }

  .navbar nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .navbar nav.active {
    max-height: 400px;
  }

  .navbar nav ul {
    flex-direction: column;
    padding: 0;
  }

  .navbar nav ul li {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .navbar nav ul li a {
    display: block;
    padding: 15px 20px;
    margin: 0;
  }

  /* HERO */
  .hero .container {
    height: auto;
    min-height: auto;
  }

  .hero .container img {
    object-fit: cover;
    height: 250px;
    max-height: 250px;
  }

  .hero-text {
    left: 5%;
    right: 5%;
    max-width: 90%;
    top: 15%;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
  }

  .hero-text h1 {
    font-size: 20px;
    margin: 5px 0;
    line-height: 1.3;
  }

  .hero-text .lead {
    font-size: 12px;
    margin: 5px 0;
    line-height: 1.4;
  }

  .hero-text .btn {
    display: none;
  }

  /* SHOWCASE */
  .showcase {
    height: auto;
    padding-bottom: 100px;
  }

  .showcase-text {
    padding: 0 20px;
  }

  .showcase .grid {
    grid-template-columns: 1fr;
    padding: 30px 0;
  }

  .showcase h1 {
    font-size: 24px;
  }

  .showcase p {
    font-size: 16px;
  }

  .showcase-form {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
    padding: 30px 20px;
  }

  .showcase::before,
  .showcase::after {
    height: 50px;
    bottom: -35px;
  }

  /* STATS */
  .stats {
    padding: 50px 0;
  }

  .stats-heading {
    font-size: 24px;
    padding: 0 10px;
    margin-bottom: 40px;
  }

  .stats-content {
    gap: 35px;
  }

  .profile-showcase {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 25px;
  }

  .profile-image-wrapper img {
    width: 150px;
    height: 150px;
  }

  .profile-badge {
    width: 40px;
    height: 40px;
  }

  .profile-badge i {
    font-size: 18px;
  }

  .profile-credentials {
    text-align: center;
  }

  .profile-credentials h3 {
    font-size: 24px;
  }

  .credential-title {
    font-size: 16px;
  }

  .credential-verification {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 30px 20px;
  }

  .stat-icon {
    width: 55px;
    height: 55px;
  }

  .stat-icon i {
    font-size: 24px;
  }

  .stat-content h3 {
    font-size: 18px;
  }

  .stat-content p {
    font-size: 13px;
  }

  /* CLINIC */
  .clinic {
    padding: 50px 0;
  }

  .clinic-header {
    margin-bottom: 35px;
    padding: 0 10px;
  }

  .clinic-header h2 {
    font-size: 28px;
  }

  .clinic-subtitle {
    font-size: 16px;
  }

  .clinic-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .clinic-image-wrapper {
    height: 300px;
    border-radius: 15px;
  }

  .image-overlay {
    padding: 20px;
  }

  .overlay-badge {
    padding: 10px 16px;
  }

  .overlay-badge i {
    font-size: 18px;
  }

  .overlay-badge span {
    font-size: 14px;
  }

  .info-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 25px 20px;
  }

  .info-icon {
    width: 55px;
    height: 55px;
  }

  .info-icon i {
    font-size: 24px;
  }

  .info-content h3 {
    font-size: 20px;
  }

  .info-content p {
    font-size: 14px;
  }

  .location-details {
    justify-content: center;
  }

  .booking-option {
    font-size: 16px;
    justify-content: center;
  }

  .booking-options .btn {
    font-size: 15px;
    padding: 12px 20px;
  }

  /* TERAPI */
  .terapi {
    padding: 50px 0;
  }

  .terapi::before {
    width: 250px;
    height: 250px;
  }

  .terapi-header {
    margin-bottom: 35px;
    padding: 0 10px;
  }

  .terapi-header h2 {
    font-size: 28px;
  }

  .terapi-intro {
    font-size: 16px;
  }

  .terapi-areas {
    padding: 25px 20px;
  }

  .terapi-areas h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .terapi-areas h3 i {
    font-size: 22px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .area-item {
    padding: 12px;
  }

  .area-item span {
    font-size: 14px;
  }

  .terapi-approach {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .approach-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 25px 20px;
  }

  .approach-icon {
    width: 55px;
    height: 55px;
  }

  .approach-icon i {
    font-size: 24px;
  }

  .approach-content h4 {
    font-size: 18px;
  }

  .approach-content p {
    font-size: 14px;
  }

  .terapi-cta {
    flex-direction: column;
    gap: 15px;
  }

  .terapi-cta .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 12px 25px;
  }

  /* CLIENT TESTIMONIALS */
  .client {
    padding: 40px 0;
  }

  .client-header {
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .client-header h2 {
    font-size: 28px;
  }

  .client-subtitle {
    font-size: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .testimonial-card {
    padding: 30px 20px 25px;
  }

  .quote-icon {
    width: 45px;
    height: 45px;
    top: -12px;
    left: 20px;
  }

  .quote-icon i {
    font-size: 18px;
  }

  .testimonial-content blockquote {
    font-size: 16px;
  }

  .testimonial-content p {
    font-size: 13px;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  /* FOOTER */
  .footer .grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .footer nav ul li {
    margin: 5px 0;
  }

  /* UTILITIES */
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .flex {
    flex-direction: column;
  }

  /* TYPOGRAPHY */
  .lead {
    font-size: 16px;
  }

  .lg {
    font-size: 2rem;
  }

  .md {
    font-size: 1.5rem;
  }

  .xl {
    font-size: 2.5rem;
  }

  /* BUTTONS */
  .btn {
    display: block;
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  /* CARDS */
  .card {
    margin: 10px 0;
  }

  /* PAGE CONTENT */
  .page .container {
    padding: 20px;
  }
}

/* TABLET */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .hero .container {
    height: 500px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .showcase {
    height: auto;
  }

  .showcase .grid {
    gap: 20px;
  }

  .showcase-form {
    width: 350px;
  }

  .stats-heading {
    font-size: 28px;
  }

  .profile-showcase {
    padding: 35px 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .clinic-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .clinic-image-wrapper {
    height: 400px;
  }

  .terapi-header h2 {
    font-size: 32px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .terapi-approach {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer .grid {
    gap: 20px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PAGE STYLES (Individuel Terapi, etc.)
   ============================================ */

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #fff;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-style: italic;
}

/* Page Content */
.page-content {
  padding: 80px 0;
  background: #fff;
}

/* Section Title */
.section-title {
  font-size: 32px;
  color: var(--dark-color);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

/* Introduction Section */
.intro-section {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 80px;
  padding: 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.intro-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(0, 66, 37, 0.3);
}

.intro-icon i {
  font-size: 40px;
  color: #fff;
}

.intro-text h2 {
  font-size: 28px;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.intro-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* Process Section */
.process-section {
  margin-bottom: 80px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 66, 37, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 66, 37, 0.15);
}

.process-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(0, 66, 37, 0.2);
}

.process-icon i {
  font-size: 32px;
  color: #fff;
}

.process-card h3 {
  font-size: 22px;
  color: var(--dark-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.process-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* Holistic Section */
.holistic-section {
  margin-bottom: 80px;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
  border-radius: 20px;
  color: #fff;
}

.holistic-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.holistic-text h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}

.lead-text {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
}

.holistic-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.holistic-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 25px 15px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.holistic-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.holistic-item i {
  font-size: 36px;
  color: #FFD700;
  margin-bottom: 12px;
  display: block;
}

.holistic-item span {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

/* Values Section */
.values-section {
  margin-bottom: 80px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.value-card {
  background: #fff;
  padding: 40px 35px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 66, 37, 0.1);
  display: flex;
  gap: 25px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 66, 37, 0.15);
}

.value-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 66, 37, 0.2);
}

.value-icon i {
  font-size: 30px;
  color: #fff;
}

.value-card h3 {
  font-size: 22px;
  color: var(--dark-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.value-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* Vision Section */
.vision-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.vision-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.vision-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 5px 20px rgba(255, 165, 0, 0.3);
}

.vision-icon i {
  font-size: 40px;
  color: #fff;
}

.vision-content h2 {
  font-size: 32px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.vision-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.vision-highlight {
  background: rgba(0, 66, 37, 0.05);
  border-left: 4px solid var(--primary-color);
  padding: 25px 30px;
  border-radius: 10px;
  margin-bottom: 35px;
  position: relative;
}

.vision-highlight i {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 10px;
  opacity: 0.3;
}

.vision-highlight p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--dark-color);
  font-style: italic;
  font-weight: 500;
  margin: 0;
}

.vision-cta {
  margin-top: 30px;
}

.vision-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.vision-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 66, 37, 0.3);
}

/* ============================================
   RESPONSIVE - PAGE STYLES
   ============================================ */

@media (max-width: 768px) {
  /* Page Hero */
  .page-hero {
    padding: 50px 0 40px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  /* Page Content */
  .page-content {
    padding: 50px 0;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  /* Introduction */
  .intro-section {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 30px 20px;
    margin-bottom: 50px;
  }

  .intro-icon {
    width: 70px;
    height: 70px;
  }

  .intro-icon i {
    font-size: 35px;
  }

  .intro-text h2 {
    font-size: 24px;
  }

  .intro-text p {
    font-size: 15px;
  }

  /* Process */
  .process-section {
    margin-bottom: 50px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-card {
    padding: 30px 20px;
  }

  .process-card h3 {
    font-size: 20px;
  }

  .process-card p {
    font-size: 14px;
  }

  /* Holistic */
  .holistic-section {
    margin-bottom: 50px;
    padding: 40px 0;
  }

  .holistic-content {
    padding: 0 20px;
  }

  .holistic-text h2 {
    font-size: 26px;
  }

  .lead-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .holistic-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .holistic-item {
    padding: 20px 10px;
  }

  .holistic-item i {
    font-size: 28px;
  }

  .holistic-item span {
    font-size: 14px;
  }

  /* Values */
  .values-section {
    margin-bottom: 50px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 30px 20px;
  }

  .value-card h3 {
    font-size: 20px;
  }

  .value-card p {
    font-size: 14px;
  }

  /* Vision */
  .vision-section {
    padding: 40px 20px;
  }

  .vision-content h2 {
    font-size: 26px;
  }

  .vision-text {
    font-size: 15px;
  }

  .vision-highlight {
    padding: 20px;
  }

  .vision-highlight p {
    font-size: 18px;
  }

  .vision-cta .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 12px 25px;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .page-hero h1 {
    font-size: 40px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .holistic-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PROFILE PAGE SPECIFIC STYLES
   ============================================ */

/* Profile Introduction */
.profile-intro-section {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.profile-photo-wrapper {
  position: relative;
  flex-shrink: 0;
}

.profile-photo-wrapper img {
  width: 350px;
  height: 350px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 5px solid var(--primary-color);
}

.profile-title-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 20px rgba(0, 66, 37, 0.4);
  font-weight: 600;
}

.profile-title-badge i {
  font-size: 20px;
}

.profile-intro-text {
  flex: 1;
}

.profile-intro-text h2 {
  font-size: 32px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.intro-highlight {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
  font-weight: 500;
}

.profile-intro-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

.philosophy-box {
  background: linear-gradient(135deg, rgba(0, 66, 37, 0.05), rgba(93, 154, 66, 0.05));
  border-left: 4px solid var(--secondary-color);
  padding: 25px;
  border-radius: 10px;
  margin-top: 25px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.philosophy-box i {
  font-size: 32px;
  color: var(--secondary-color);
  flex-shrink: 0;
  margin-top: 5px;
}

.philosophy-box p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-color);
  font-style: italic;
  margin: 0;
}

/* Education Section */
.education-section {
  margin-bottom: 80px;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.education-card {
  background: #fff;
  padding: 40px 35px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 66, 37, 0.1);
  display: flex;
  gap: 25px;
  transition: all 0.3s ease;
}

.education-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 66, 37, 0.15);
}

.education-card.featured {
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, rgba(0, 66, 37, 0.02), rgba(255, 255, 255, 1));
}

.education-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 66, 37, 0.2);
}

.education-icon i {
  font-size: 32px;
  color: #fff;
}

.education-content h3 {
  font-size: 24px;
  color: var(--dark-color);
  margin-bottom: 8px;
  font-weight: 600;
}

.institution {
  font-size: 16px;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.description {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* Experience Section */
.experience-section {
  margin-bottom: 80px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.experience-card {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  box-shadow: 0 5px 20px rgba(0, 66, 37, 0.2);
  transition: all 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 66, 37, 0.3);
}

.experience-number {
  font-size: 56px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.experience-content h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 600;
}

.experience-content p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Association Section */
.association-section {
  margin-bottom: 80px;
}

.association-content {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 50px 45px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 35px;
  align-items: flex-start;
}

.association-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(255, 165, 0, 0.3);
}

.association-icon i {
  font-size: 45px;
  color: #fff;
}

.association-text h2 {
  font-size: 28px;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.association-text > p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.association-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(0, 66, 37, 0.05);
  border-radius: 8px;
}

.feature-item i {
  color: var(--secondary-color);
  font-size: 18px;
}

.feature-item span {
  font-size: 15px;
  color: var(--dark-color);
  font-weight: 500;
}

/* Profile CTA */
.profile-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
}

.cta-content h3 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.cta-content > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary-color);
}

/* ============================================
   RESPONSIVE - PROFILE PAGE
   ============================================ */

@media (max-width: 768px) {
  /* Profile Introduction */
  .profile-intro-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
  }

  .profile-photo-wrapper img {
    width: 250px;
    height: 250px;
  }

  .profile-title-badge {
    bottom: 15px;
    padding: 10px 20px;
    font-size: 14px;
  }

  .profile-title-badge i {
    font-size: 16px;
  }

  .profile-intro-text h2 {
    font-size: 26px;
  }

  .intro-highlight {
    font-size: 15px;
  }

  .philosophy-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 20px;
  }

  .philosophy-box i {
    font-size: 28px;
  }

  /* Education */
  .education-section {
    margin-bottom: 50px;
  }

  .education-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .education-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 30px 20px;
  }

  .education-content h3 {
    font-size: 22px;
  }

  /* Experience */
  .experience-section {
    margin-bottom: 50px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .experience-number {
    font-size: 48px;
  }

  .experience-content h3 {
    font-size: 18px;
  }

  .experience-content p {
    font-size: 13px;
  }

  /* Association */
  .association-section {
    margin-bottom: 50px;
  }

  .association-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 35px 20px;
  }

  .association-icon {
    width: 75px;
    height: 75px;
  }

  .association-icon i {
    font-size: 35px;
  }

  .association-text h2 {
    font-size: 24px;
  }

  .association-text > p {
    font-size: 15px;
  }

  .association-features {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .profile-cta {
    padding: 40px 20px;
  }

  .cta-content h3 {
    font-size: 26px;
  }

  .cta-content > p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 12px 25px;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .profile-intro-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-photo-wrapper img {
    width: 300px;
    height: 300px;
  }

  .education-grid {
    grid-template-columns: 1fr;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .association-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .association-features {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   GESTALT TERAPI PAGE SPECIFIC STYLES
   ============================================ */

/* Gestalt Features */
.gestalt-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.feature-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 66, 37, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 66, 37, 0.15);
  border-color: var(--secondary-color);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(0, 66, 37, 0.2);
}

.feature-icon i {
  font-size: 32px;
  color: #fff;
}

.feature-card h3 {
  font-size: 22px;
  color: var(--dark-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* Gestalt Core Section */
.gestalt-core {
  margin-bottom: 80px;
}

.core-header {
  text-align: center;
  margin-bottom: 50px;
}

.core-header h2 {
  font-size: 32px;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.core-subtitle {
  font-size: 18px;
  color: #666;
  font-style: italic;
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.core-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(0, 66, 37, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.core-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 66, 37, 0.15);
  border-color: var(--secondary-color);
}

.core-number {
  position: absolute;
  top: -20px;
  left: 35px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 66, 37, 0.3);
}

.core-card h3 {
  font-size: 26px;
  color: var(--dark-color);
  margin: 20px 0 15px;
  font-weight: 600;
}

.core-card > p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.core-highlight {
  background: rgba(0, 66, 37, 0.05);
  border-left: 4px solid var(--secondary-color);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.core-highlight i {
  color: var(--secondary-color);
  font-size: 20px;
  margin-top: 3px;
  opacity: 0.5;
}

.core-highlight p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark-color);
  font-style: italic;
  margin: 0;
}

/* Gestalt Pillars Section */
.gestalt-pillars {
  margin-bottom: 80px;
}

.pillars-header {
  margin-bottom: 50px;
}

.pillars-header h2 {
  font-size: 32px;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.pillars-intro {
  font-size: 18px;
  color: #666;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar-card {
  background: #fff;
  padding: 40px 30px 35px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 66, 37, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 66, 37, 0.15);
}

.pillar-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 66, 37, 0.3);
}

.pillar-icon i {
  font-size: 28px;
  color: #fff;
}

.pillar-number {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  font-size: 18px;
  font-weight: bold;
  margin: 30px 0 20px;
}

.pillar-card h3 {
  font-size: 22px;
  color: var(--dark-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.pillar-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.pillar-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 15px;
  background: rgba(93, 154, 66, 0.05);
  border-radius: 8px;
  margin-top: 20px;
}

.pillar-detail i {
  color: var(--secondary-color);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.pillar-detail span {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-color);
  font-weight: 500;
}

/* Gestalt CTA */
.gestalt-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
}

.gestalt-cta .cta-content h3 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.gestalt-cta .cta-content > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

/* ============================================
   RESPONSIVE - GESTALT TERAPI PAGE
   ============================================ */

@media (max-width: 768px) {
  /* Gestalt Features */
  .gestalt-features {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .feature-card h3 {
    font-size: 20px;
  }

  .feature-card p {
    font-size: 14px;
  }

  /* Core Section */
  .gestalt-core {
    margin-bottom: 50px;
  }

  .core-header {
    margin-bottom: 35px;
  }

  .core-header h2 {
    font-size: 26px;
  }

  .core-subtitle {
    font-size: 16px;
  }

  .core-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .core-card {
    padding: 35px 20px 30px;
  }

  .core-number {
    top: -15px;
    left: 20px;
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .core-card h3 {
    font-size: 22px;
  }

  .core-card > p {
    font-size: 15px;
  }

  .core-highlight {
    flex-direction: column;
    padding: 15px;
  }

  .core-highlight p {
    font-size: 14px;
  }

  /* Pillars Section */
  .gestalt-pillars {
    margin-bottom: 50px;
  }

  .pillars-header {
    margin-bottom: 35px;
  }

  .pillars-header h2 {
    font-size: 26px;
  }

  .pillars-intro {
    font-size: 16px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .pillar-card {
    padding: 35px 20px 30px;
  }

  .pillar-card h3 {
    font-size: 20px;
  }

  .pillar-card > p {
    font-size: 14px;
  }

  .pillar-detail span {
    font-size: 13px;
  }

  /* CTA */
  .gestalt-cta {
    padding: 40px 20px;
  }

  .gestalt-cta .cta-content h3 {
    font-size: 26px;
  }

  .gestalt-cta .cta-content > p {
    font-size: 16px;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .gestalt-features {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .core-grid {
    grid-template-columns: 1fr;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ============================================
   CONTACT & PRICING PAGE SPECIFIC STYLES
   ============================================ */

/* Contact Introduction */
.contact-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.contact-intro h2 {
  font-size: 32px;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.contact-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

/* Contact Methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 66, 37, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 66, 37, 0.15);
  border-color: var(--secondary-color);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 5px 20px rgba(0, 66, 37, 0.3);
}

.contact-icon i {
  font-size: 36px;
  color: #fff;
}

.contact-card h3 {
  font-size: 22px;
  color: var(--dark-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-detail {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-note {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Location Info */
.location-info {
  margin-bottom: 80px;
}

.location-content {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 30px;
  align-items: center;
}

.location-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(0, 66, 37, 0.3);
}

.location-icon i {
  font-size: 40px;
  color: #fff;
}

.location-text h3 {
  font-size: 24px;
  color: var(--dark-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.location-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

/* Pricing Section */
.pricing-section {
  margin-bottom: 80px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.price-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(0, 66, 37, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 66, 37, 0.15);
}

.price-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(0, 66, 37, 0.02), rgba(255, 255, 255, 1));
  transform: scale(1.05);
}

.price-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 66, 37, 0.3);
}

.price-header h3 {
  font-size: 24px;
  color: var(--dark-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.price-amount {
  margin: 30px 0;
}

.currency {
  font-size: 20px;
  color: #666;
  vertical-align: top;
  margin-right: 5px;
}

.amount {
  font-size: 56px;
  font-weight: bold;
  color: var(--primary-color);
}

.price-duration {
  font-size: 16px;
  color: #666;
  margin-top: 15px;
}

.pricing-note {
  background: rgba(93, 154, 66, 0.05);
  border-left: 4px solid var(--secondary-color);
  padding: 20px 25px;
  border-radius: 10px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.pricing-note i {
  color: var(--secondary-color);
  font-size: 24px;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-note p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark-color);
  margin: 0;
}

/* Policies Section */
.policies-section {
  margin-bottom: 80px;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.policy-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 66, 37, 0.1);
  transition: all 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 66, 37, 0.15);
}

.policy-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 66, 37, 0.2);
}

.policy-icon i {
  font-size: 32px;
  color: #fff;
}

.policy-card h3 {
  font-size: 22px;
  color: var(--dark-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.policy-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.policy-methods {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 66, 37, 0.05);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 500;
}

.payment-badge i {
  font-size: 16px;
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
}

.contact-cta .cta-content h3 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.contact-cta .cta-content > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

/* ============================================
   RESPONSIVE - CONTACT & PRICING PAGE
   ============================================ */

@media (max-width: 768px) {
  /* Contact Intro */
  .contact-intro {
    margin-bottom: 40px;
  }

  .contact-intro h2 {
    font-size: 26px;
  }

  .contact-intro p {
    font-size: 16px;
  }

  /* Contact Methods */
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .contact-icon {
    width: 70px;
    height: 70px;
  }

  .contact-icon i {
    font-size: 32px;
  }

  .contact-card h3 {
    font-size: 20px;
  }

  .contact-detail {
    font-size: 18px;
  }

  .contact-note {
    font-size: 13px;
  }

  /* Location Info */
  .location-info {
    margin-bottom: 50px;
  }

  .location-content {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .location-icon {
    width: 75px;
    height: 75px;
  }

  .location-icon i {
    font-size: 35px;
  }

  .location-text h3 {
    font-size: 22px;
  }

  .location-text p {
    font-size: 15px;
  }

  /* Pricing */
  .pricing-section {
    margin-bottom: 50px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
  }

  .price-card.featured {
    transform: scale(1);
  }

  .price-card.featured:hover {
    transform: translateY(-8px);
  }

  .price-header h3 {
    font-size: 22px;
  }

  .amount {
    font-size: 48px;
  }

  .pricing-note {
    padding: 15px 20px;
  }

  .pricing-note i {
    font-size: 20px;
  }

  .pricing-note p {
    font-size: 14px;
  }

  /* Policies */
  .policies-section {
    margin-bottom: 50px;
  }

  .policies-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .policy-card {
    padding: 30px 20px;
  }

  .policy-card h3 {
    font-size: 20px;
  }

  .policy-card p {
    font-size: 14px;
  }

  /* CTA */
  .contact-cta {
    padding: 40px 20px;
  }

  .contact-cta .cta-content h3 {
    font-size: 26px;
  }

  .contact-cta .cta-content > p {
    font-size: 16px;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .location-content {
    flex-direction: column;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .price-card.featured {
    transform: scale(1);
  }

  .policies-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
