/* ==================== 
   General Styles
   ==================== */
:root {
  --primary-color: #9c64a6;
  --primary-dark: #7b4d83;
  --primary-light: #c193cb;
  --secondary-color: #3a3a3a;
  --accent-color: #f8b6d0;
  --text-color: #333333;
  --text-light: #666666;
  --background-color: #ffffff;
  --background-alt: #f8f8f8;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --error-color: #f44336;
  --warning-color: #ff9800;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 4px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--secondary-color);
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 20px;
}

ul, ol {
  margin: 0 0 20px 20px;
}

/* Custom list markers */
ul.custom-markers {
  list-style: none;
  margin-left: 0;
  padding-left: 1.2em;
}

ul.custom-markers li {
  position: relative;
  margin-bottom: 10px;
}

ul.custom-markers li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: -1.2em;
  width: 1em;
  font-size: 1.2em;
}

/* ==================== 
   Buttons
   ==================== */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
}

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

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

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

.btn-tertiary:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* ==================== 
   Header & Navigation
   ==================== */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
}

nav ul li a:hover, 
nav ul li a.active {
  color: var(--primary-color);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover::after, 
nav ul li a.active::after {
  width: 100%;
}

.hamburger-menu {
  display: none;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* ==================== 
   Hero Section
   ==================== */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: white;
}

.hero h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--accent-color);
  font-weight: 400;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ==================== 
   Features Section
   ==================== */
.features {
  padding: 80px 0;
  background-color: var(--background-alt);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  text-align: center;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.feature-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.feature-item h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* ==================== 
   Services Section
   ==================== */
.popular-services {
  padding: 80px 0;
}

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

.service-item {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-content p {
  margin-bottom: 25px;
  flex-grow: 1;
}

/* ==================== 
   Testimonials Section
   ==================== */
.testimonials {
  padding: 80px 0;
  background-color: var(--background-alt);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slide {
  padding: 20px;
}

.testimonial-content {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.quote {
  color: var(--primary-light);
  font-size: 2rem;
  margin-bottom: 20px;
}

.client-info {
  margin-top: 30px;
  text-align: right;
}

.client-info h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}

.prev-btn, .next-btn {
  background-color: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--primary-dark);
}

/* ==================== 
   CTA Section
   ==================== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/2.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* ==================== 
   Blog Preview Section
   ==================== */
.blog-preview {
  padding: 80px 0;
}

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

.blog-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.blog-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.read-more i {
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover i {
  transform: translateX(5px);
}

.view-all {
  text-align: center;
  margin-top: 40px;
}

/* ==================== 
   Footer
   ==================== */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 60px 0 20px;
}

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

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 15px;
}

.footer-links h3, 
.footer-contact h3, 
.footer-social h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul, 
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li, 
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #ccc;
}

.footer-legal a:hover {
  color: white;
}

/* ==================== 
   Cookie Banner
   ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 15px 0;
  z-index: 1000;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 15px;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.cookie-content a {
  color: var(--accent-color);
  text-decoration: underline;
}

/* ==================== 
   Page Banner
   ==================== */
.page-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/3.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.page-banner h1 {
  color: white;
  margin-bottom: 15px;
}

.page-banner p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ==================== 
   Services Page
   ==================== */
.services-intro {
  padding: 80px 0;
  background-color: var(--background-alt);
}

.services-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.intro-content h2 {
  margin-bottom: 25px;
}

.intro-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.service-packages {
  padding: 80px 0;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-bottom: 50px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.service-item.featured {
  border: 2px solid var(--primary-color);
}

.service-item img {
  height: 100%;
  object-fit: cover;
}

.service-details {
  padding: 30px;
}

.service-details h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-description {
  margin-bottom: 20px;
}

.service-cta {
  margin-top: 20px;
}

.treatment-process {
  padding: 80px 0;
  background-color: var(--background-alt);
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.step-number {
  background-color: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-right: 20px;
}

.step-content h3 {
  margin-bottom: 10px;
}

.pricing-intro {
  padding: 80px 0;
  text-align: center;
}

.pricing-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.faq {
  padding: 80px 0;
  background-color: var(--background-alt);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: white;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.accordion-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.accordion-icon {
  color: var(--primary-color);
}

.accordion-content {
  padding: 0 20px 20px;
  display: none;
}

.accordion-item.active .accordion-content {
  display: block;
}

/* ==================== 
   Blog Page
   ==================== */
.blog-main {
  padding: 80px 0;
}

.blog-main .blog-grid {
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.blog-card .blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.875rem;
  color: var(--text-light);
}

.blog-meta i {
  color: var(--primary-color);
  margin-right: 5px;
}

.blog-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.blog-card.featured img {
  height: 100%;
}

.newsletter {
  padding: 60px 0;
  background-color: var(--background-alt);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-form {
  display: flex;
  margin-top: 30px;
  margin-bottom: 15px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 30px 0 0 30px;
  font-family: var(--font-primary);
}

.newsletter-form button {
  border-radius: 0 30px 30px 0;
}

.form-disclaimer {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ==================== 
   Blog Post Page
   ==================== */
.blog-post {
  padding: 80px 0;
}

.post-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: var(--text-light);
}

.post-meta i {
  color: var(--primary-color);
  margin-right: 5px;
}

.post-excerpt {
  font-size: 1.2rem;
  color: var(--text-light);
}

.post-featured-image {
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
}

.post-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.post-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.post-content img {
  border-radius: 10px;
  margin: 30px 0;
}

.post-content .btn {
  margin-top: 10px;
}

.myth-fact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
  background-color: var(--background-alt);
  border-radius: 10px;
  padding: 30px;
}

.myth, .fact {
  padding: 20px;
  border-radius: 10px;
}

.myth {
  background-color: rgba(244, 67, 54, 0.1);
}

.fact {
  background-color: rgba(76, 175, 80, 0.1);
}

.myth h3, .fact h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.post-cta {
  background-color: var(--background-alt);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin: 40px 0;
}

.post-author {
  display: flex;
  align-items: center;
  background-color: var(--background-alt);
  padding: 30px;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 800px;
}

.post-author img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 20px;
}

.author-info h3 {
  margin-bottom: 5px;
  font-size: 1rem;
  color: var(--text-light);
}

.author-info h4 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 40px auto;
}

.nav-previous, .nav-next {
  max-width: 45%;
}

.nav-previous a, .nav-next a {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.nav-previous i {
  margin-right: 10px;
}

.nav-next i {
  margin-left: 10px;
}

.related-posts {
  margin: 60px auto;
  max-width: 1100px;
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 30px;
}

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

/* ==================== 
   About Page
   ==================== */
.about-intro {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.mission-values {
  padding: 80px 0;
  background-color: var(--background-alt);
}

.mission-content {
  max-width: 1000px;
  margin: 0 auto;
}

.mission-statement {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

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

.value-item {
  text-align: center;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.value-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.value-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.our-team {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

.member-info {
  padding: 25px;
}

.member-info h3 {
  margin-bottom: 5px;
  color: var(--primary-color);
}

.member-info h4 {
  font-weight: normal;
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 0.875rem;
}

.our-facility {
  padding: 80px 0;
  background-color: var(--background-alt);
}

.facility-content {
  max-width: 1000px;
  margin: 0 auto;
}

.facility-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-item h3 {
  padding: 15px;
  text-align: center;
  margin: 0;
  background-color: white;
}

.facility-features {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.technology {
  padding: 80px 0;
}

.technology-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.technology-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.certifications {
  padding: 80px 0;
  background-color: var(--background-alt);
}

.certifications-content {
  max-width: 1000px;
  margin: 0 auto;
}

.certification-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.logo-item {
  text-align: center;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.logo-item img {
  height: 100px;
  width: auto;
  margin-bottom: 20px;
}

.logo-item h3 {
  margin: 0;
  font-size: 1rem;
}

/* ==================== 
   Contact Page
   ==================== */
.contact-info {
  padding: 80px 0;
  background-color: var(--background-alt);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.info-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

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

.info-card .icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.info-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-form-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.form-container h2, .map-container h2 {
  margin-bottom: 20px;
}

.contact-form {
  margin-top: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input, 
.form-group textarea, 
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
}

.form-group textarea {
  resize: vertical;
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
}

.form-group.checkbox input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.form-group.checkbox label {
  margin: 0;
  font-weight: normal;
  font-size: 0.875rem;
}

.map {
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 20px;
}

.directions h3 {
  margin-bottom: 15px;
}

.booking-options {
  padding: 80px 0;
  background-color: var(--background-alt);
}

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

.booking-option {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.booking-option .icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.booking-option h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.booking-option p {
  margin-bottom: 20px;
}

.faq-section {
  padding: 80px 0;
}

.thank-you-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-icon {
  color: var(--success-color);
  font-size: 3rem;
  margin-bottom: 20px;
}

/* ==================== 
   Policy Pages
   ==================== */
.policy-content {
  padding: 60px 0;
}

.policy-intro {
  max-width: 800px;
  margin: 0 auto 40px;
}

.policy-section {
  max-width: 800px;
  margin: 0 auto 50px;
}

.policy-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.policy-section h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.contact-info {
  background-color: var(--background-alt);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

/* ==================== 
   Responsive Styles
   ==================== */
@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .services-intro .container,
  .technology-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .service-item,
  .blog-card.featured {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .myth-fact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  .hamburger-menu {
    display: block;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .feature-grid,
  .services-grid,
  .blog-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .post-author {
    flex-direction: column;
    text-align: center;
  }
  
  .post-author img {
    margin: 0 auto 20px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: 30px;
    margin-bottom: 10px;
  }
  
  .newsletter-form button {
    border-radius: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .post-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 20px;
  }
  
  .nav-previous, .nav-next {
    max-width: 100%;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}

/* ==================== 
   Additional Blog Post Styles
   ==================== */
.preparation-timeline,
.timeline-chart {
  margin: 40px 0;
}

.timeline-item {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.timeline-marker {
  width: 150px;
  flex-shrink: 0;
  text-align: right;
  padding-right: 20px;
  position: relative;
}

.timeline-marker span {
  background-color: var(--primary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.875rem;
}

.timeline-content {
  border-left: 2px solid var(--primary-color);
  padding-left: 20px;
  position: relative;
}

.timeline-content h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 0;
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.tip {
  background-color: rgba(255, 152, 0, 0.1);
  padding: 15px;
  border-left: 3px solid var(--warning-color);
  margin: 20px 0;
}

.info-box {
  background-color: var(--background-alt);
  padding: 25px;
  border-radius: 10px;
  margin: 30px 0;
}

.info-box h3 {
  color: var(--primary-color);
  margin-top: 0;
}

.area-timing {
  margin: 30px 0;
}

.area-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.area-item {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.area-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.timeline {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 20px 0;
  margin-bottom: 20px;
}

.timeline-month {
  min-width: 200px;
  margin-right: 15px;
  position: relative;
}

.month-number {
  background-color: var(--primary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.month-content {
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  height: 150px;
}

.timeline-note {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  margin-top: 10px;
}

.sun-protection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.season-protection {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.season-protection h3 {
  color: var(--primary-color);
  margin-top: 0;
}

.special-considerations {
  margin: 40px 0;
}

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

.consideration {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.consideration h3 {
  color: var(--primary-color);
  margin-top: 0;
}

.decision-factors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.factor {
  background-color: var(--background-alt);
  padding: 25px;
  border-radius: 10px;
}

.factor h3 {
  color: var(--primary-color);
  margin-top: 0;
}

.seasonal-guide {
  margin: 40px 0;
}

.season {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-bottom: 40px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.season-image img {
  height: 100%;
  object-fit: cover;
}

.season-content {
  padding: 30px;
}

.season-content h2 {
  color: var(--primary-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.season-content h2 i {
  margin-right: 10px;
}

.season-rating {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.rating-label {
  margin-right: 10px;
  font-weight: 600;
}

.rating-stars {
  color: gold;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.pros h4, .cons h4 {
  margin-bottom: 15px;
}

.pros h4 {
  color: var(--success-color);
}

.cons h4 {
  color: var(--error-color);
}

.planning-tip {
  background-color: rgba(156, 100, 166, 0.1);
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
}

.planning-tip h4 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.winter {
  border-left: 5px solid #a0d2f3;
}

.autumn {
  border-left: 5px solid #e69c45;
}

.spring {
  border-left: 5px solid #8bc34a;
}

.summer {
  border-left: 5px solid #ff9800;
}

.winter .season-content h2 i {
  color: #a0d2f3;
}

.autumn .season-content h2 i {
  color: #e69c45;
}

.spring .season-content h2 i {
  color: #8bc34a;
}

.summer .season-content h2 i {
  color: #ff9800;
}

.treatment-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.area-card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.area-card h3 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 15px;
}

.do-dont-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 20px 0;
}

.dos h3, .donts h3 {
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-bottom: 15px;
}

.dos h3 {
  color: var(--success-color);
}

.dos h3 i {
  margin-right: 10px;
}

.donts h3 {
  color: var(--error-color);
}

.donts h3 i {
  margin-right: 10px;
}

.aftercare-section {
  margin: 40px 0;
  padding: 30px;
  background-color: var(--background-alt);
  border-radius: 10px;
}

.aftercare-section h2 {
  margin-top: 0;
}

.sun-protection-tips {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: var(--box-shadow);
}

.sun-protection-tips h3 {
  color: var(--primary-color);
  margin-top: 0;
}

.comparison-section {
  margin: 40px 0;
  padding: 30px;
  background-color: var(--background-alt);
  border-radius: 10px;
}

.comparison-section.featured {
  background-color: rgba(156, 100, 166, 0.1);
  border: 2px solid var(--primary-color);
}

.comparison-section h2 {
  margin-top: 0;
  color: var(--primary-color);
}

.method-comparison {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-top: 20px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.method-image img {
  height: 100%;
  object-fit: cover;
}

.method-details {
  padding: 25px;
}

.method-details h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.method-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.fact-item {
  background-color: var(--background-alt);
  padding: 10px 15px;
  border-radius: 5px;
  flex-grow: 1;
  flex-basis: 200px;
}

.fact-label {
  font-weight: 600;
  margin-right: 10px;
}

.cost-comparison {
  margin: 30px 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: white;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  overflow: hidden;
}

.comparison-table th, 
.comparison-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--primary-color);
  color: white;
}

.comparison-table tr:nth-child(even) {
  background-color: var(--background-alt);
}

.comparison-table tr.highlighted {
  background-color: rgba(156, 100, 166, 0.1);
  font-weight: 600;
}

.table-note {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
}

.time-comparison {
  margin: 30px 0;
}

.time-chart {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.time-bar {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.method-name {
  width: 120px;
  font-weight: 600;
  padding-right: 15px;
}

.bar-container {
  flex-grow: 1;
  height: 25px;
  background-color: var(--background-alt);
  border-radius: 15px;
  position: relative;
}

.bar {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 15px;
}

.time-value {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.chart-note {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  margin-top: 10px;
}

.laser-benefits {
  margin: 30px 0;
}

.benefit {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.benefit-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.refund-steps {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin: 20px 0;
}

.refund-steps h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.refund-steps ol {
  margin-left: 20px;
}

.refund-steps li {
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .method-comparison,
  .season {
    grid-template-columns: 1fr;
  }
  
  .do-dont-grid {
    grid-template-columns: 1fr;
  }
  
  .area-row {
    grid-template-columns: 1fr;
  }
}
