/* 
  Masážne služby Slovensko - Main Stylesheet
  Author: Masážne služby Slovensko
  Version: 1.0
*/

/* Base Styles */
:root {
  --primary-color: #4caf50;
  --primary-dark: #388e3c;
  --primary-light: #81c784;
  --secondary-color: #2196f3;
  --text-color: #333333;
  --text-light: #666666;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #17a2b8;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 4px;
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --container-padding: 1rem;
  --section-spacing: 5rem;
  --element-spacing: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

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

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

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

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

button {
  cursor: pointer;
}

/* Layout */
section {
  padding: 4rem 0;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  color: var(--text-light);
}

.alt-bg {
  background-color: var(--light-bg);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  border: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
}

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

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

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

.btn-secondary:hover {
  background-color: #1976d2;
  color: var(--white);
}

.btn-tertiary {
  background-color: var(--gray-300);
  color: var(--gray-800);
}

.btn-tertiary:hover {
  background-color: var(--gray-400);
  color: var(--gray-900);
}

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

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

.btn-spell-check {
  background-color: var(--gray-300);
  color: var(--gray-800);
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-spell-check:hover {
  background-color: var(--gray-400);
}

.center-btn {
  text-align: center;
  margin-top: 2rem;
}

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--container-padding);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 60px;
}

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

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem;
  position: relative;
}

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

nav ul li a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin-bottom: 5px;
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background-color: var(--light-bg);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/background.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--gray-700);
}

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

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  padding: 4rem 0;
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Features Section */
.features {
  padding: 5rem 0;
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.feature-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.feature-icon svg {
  width: 48px;
  height: 48px;
}

.feature-item h3 {
  margin-bottom: 1rem;
}

/* Services Preview */
.services-preview {
  background-color: var(--light-bg);
  padding: 5rem 0;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

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

.service-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
}

.service-card .btn {
  margin: 0 1.5rem 1.5rem;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.testimonial {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-light);
  position: relative;
  padding: 0 1rem;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: """;
  font-size: 3rem;
  color: var(--primary-light);
  position: absolute;
  line-height: 1;
}

.testimonial-content p::before {
  top: -0.5rem;
  left: -1rem;
}

.testimonial-content p::after {
  content: """;
  bottom: -2rem;
  right: -1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.author-info h4 {
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Blog Preview */
.blog-preview {
  background-color: var(--light-bg);
  padding: 5rem 0;
}

.blog-preview h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

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

.blog-post-content {
  padding: 1.5rem;
}

.post-meta {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-post h3 {
  margin-bottom: 1rem;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.read-more:hover {
  color: var(--primary-dark);
}

/* CTA Section */
.cta {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

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

.cta .btn-primary:hover {
  background-color: var(--gray-100);
}

/* Footer */
footer {
  background-color: var(--gray-800);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

.footer-logo img {
  max-height: 60px;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: var(--gray-400);
}

.footer-links h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

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

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--white);
}

.footer-contact h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-contact p {
  color: var(--gray-400);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

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

.social-icons svg {
  width: 20px;
  height: 20px;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--gray-800);
  color: var(--white);
  padding: 1rem;
  z-index: 1000;
  display: none;
}

.cookie-notice.active {
  display: block;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.cookie-content a {
  color: var(--primary-light);
  font-size: 0.875rem;
}

.cookie-content a:hover {
  text-decoration: underline;
}

/* Glossary Section */
.glossary-section {
  background-color: var(--light-bg);
  padding: 4rem 0;
}

.glossary-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.glossary-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.glossary-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
}

.glossary-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.glossary-item p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* About Page */
.about-intro {
  padding: 5rem 0;
}

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

.about-content h2 {
  margin-bottom: 1.5rem;
}

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

.our-values {
  background-color: var(--light-bg);
  padding: 5rem 0;
}

.our-values h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.value-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.value-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.team {
  padding: 5rem 0;
}

.team h2 {
  text-align: center;
  margin-bottom: 1rem;
}

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

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

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

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

.team-member h3 {
  margin: 1.5rem 0 0.25rem;
  padding: 0 1rem;
}

.team-member p {
  color: var(--text-light);
  margin-bottom: 0.75rem;
  padding: 0 1rem;
}

.team-member p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 600;
}

.team-member .social-icons {
  justify-content: center;
  margin: 1rem 0 1.5rem;
}

.certifications {
  background-color: var(--light-bg);
  padding: 5rem 0;
}

.certifications h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.certification-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.certification-item h3 {
  padding: 1.5rem 1.5rem 0.5rem;
}

.certification-item p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
}

/* Blog Page */
.blog-content {
  padding: 5rem 0;
}

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

.blog-post-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.post-image {
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.blog-post-card:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.post-category {
  color: var(--primary-color);
  font-weight: 600;
}

.blog-post-card h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.blog-post-card h2 a {
  color: var(--gray-800);
  transition: var(--transition);
}

.blog-post-card h2 a:hover {
  color: var(--primary-color);
}

.blog-post-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

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

.read-more:hover {
  color: var(--primary-dark);
}

.newsletter {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 0;
}

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

.newsletter h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.newsletter p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.privacy-note {
  font-size: 0.875rem;
  margin-top: 1rem;
  opacity: 0.8;
}

.privacy-note a {
  color: var(--white);
  text-decoration: underline;
}

/* Blog Post Page */
.blog-post {
  padding: 5rem 0;
}

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

.blog-post-header h1 {
  margin-bottom: 1rem;
}

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

.featured-image {
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.featured-image img {
  width: 100%;
  height: auto;
}

.blog-post-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--gray-800);
}

.blog-post-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.blog-post-content h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--gray-700);
}

.blog-post-content p {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  line-height: 1.7;
}

.blog-post-content ul, 
.blog-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-post-content li {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.blog-image {
  margin: 2rem 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.blog-image img {
  width: 100%;
  height: auto;
}

.image-caption {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-light);
  padding: 1rem;
  background-color: var(--gray-100);
  margin-bottom: 0;
}

.author-box {
  display: flex;
  align-items: center;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 3rem 0;
}

.author-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1.5rem;
}

.author-bio h3 {
  margin: 0 0 0.5rem;
}

.author-bio p {
  margin-bottom: 0;
  color: var(--text-light);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-300);
}

.prev-post a,
.next-post a {
  color: var(--primary-color);
  font-weight: 600;
}

.related-posts {
  margin-top: 4rem;
}

.related-posts h3 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.related-post {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.related-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.related-post a {
  display: block;
  color: var(--text-color);
}

.related-post img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-post h4 {
  padding: 1rem;
  margin-bottom: 0;
  font-size: 1.125rem;
}

/* Services Page */
.services-intro {
  padding: 5rem 0;
}

.services-intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.service-detail {
  padding: 5rem 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail-grid.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.service-detail-grid.reverse .service-content {
  direction: ltr;
}

.service-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.service-content h2 {
  margin-bottom: 0.5rem;
}

.service-tagline {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.service-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.detail-item h3 {
  color: var(--gray-700);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.detail-item ul {
  margin-bottom: 1.5rem;
}

.detail-item li {
  margin-bottom: 0.5rem;
}

.additional-services {
  background-color: var(--light-bg);
  padding: 5rem 0;
}

.additional-services h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.additional-service {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

.additional-service h3 {
  padding: 1.5rem 1.5rem 0.5rem;
}

.additional-service p {
  padding: 0 1.5rem;
  color: var(--text-light);
  min-height: 4.8rem;
}

.service-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem 1.5rem;
}

.service-price span {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.packages {
  padding: 5rem 0;
}

.packages h2 {
  text-align: center;
  margin-bottom: 1rem;
}

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

.package {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.package:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.package.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.package.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.package-header {
  background-color: var(--gray-100);
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-300);
}

.package.featured .package-header {
  background-color: var(--primary-color);
  color: var(--white);
}

.package-header h3 {
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.package.featured .package-header h3 {
  color: var(--white);
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.package.featured .package-price {
  color: var(--white);
}

.package-content {
  padding: 2rem;
}

.package-content ul {
  margin-bottom: 2rem;
}

.package-content li {
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.gift-certificates {
  background-color: var(--light-bg);
  padding: 5rem 0;
}

.gift-certificates-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gift-text h2 {
  margin-bottom: 1.5rem;
}

.gift-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.gift-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.faqs {
  padding: 5rem 0;
}

.faqs h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.faq-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.faq-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Contact Page */
.contact-info {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-details h2,
.contact-form h2 {
  margin-bottom: 2rem;
}

.detail-item {
  display: flex;
  margin-bottom: 2rem;
}

.detail-icon {
  margin-right: 1rem;
  color: var(--primary-color);
}

.detail-text h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.detail-text p {
  color: var(--text-light);
  margin-bottom: 0;
}

.detail-text a {
  color: var(--text-color);
}

.detail-text a:hover {
  color: var(--primary-color);
}

.social-links h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.contact-form form {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  background-color: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

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

.form-group.checkbox input {
  width: auto;
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

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

.form-group.checkbox a {
  color: var(--primary-color);
}

.form-group.checkbox a:hover {
  text-decoration: underline;
}

.map-section {
  background-color: var(--light-bg);
  padding: 5rem 0;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.booking-info {
  padding: 5rem 0;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.booking-content h2 {
  margin-bottom: 1.5rem;
}

.booking-content p {
  margin-bottom: 1.5rem;
}

.booking-content ul {
  color: var(--text-light);
}

.booking-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--white);
  margin: auto;
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.close {
  color: var(--gray-500);
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.close:hover {
  color: var(--gray-800);
}

.thank-you-message {
  text-align: center;
}

.thank-you-message svg {
  color: var(--success);
  margin-bottom: 1rem;
}

.thank-you-message h2 {
  margin-bottom: 1rem;
}

.thank-you-message p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .service-detail-grid,
  .service-detail-grid.reverse,
  .about-grid,
  .gift-certificates-content,
  .booking-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-detail-grid.reverse {
    direction: ltr;
  }
  
  .service-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  nav ul li {
    margin-left: 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.125rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .feature-item,
  .service-card,
  .blog-post,
  .testimonial,
  .team-member,
  .certification-item,
  .additional-service,
  .package,
  .faq-item {
    padding: 1.5rem;
  }
  
  .page-header {
    padding: 3rem 0;
  }
  
  .service-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .author-box {
    flex-direction: column;
    text-align: center;
  }
  
  .author-image img {
    margin: 0 auto 1rem;
  }
}
