/* Base Styles */
:root {
  --primary-color: #d4729e;
  --primary-dark: #b35580;
  --primary-light: #f3d4e2;
  --secondary-color: #333;
  --accent-color: #755a7e;
  --accent-light: #c9b8d0;
  --text-color: #333;
  --text-light: #666;
  --background-color: #fff;
  --background-alt: #f9f5f7;
  --success-color: #4caf50;
  --error-color: #f44336;
  --border-radius: 5px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-main: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

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

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--secondary-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

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

.custom-border {
  border: 3px solid var(--primary-light);
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-border:hover {
  transform: translateY(-5px);
  box-shadow: 7px 7px 20px rgba(0, 0, 0, 0.15);
}

/* Custom List Styles */
.custom-list {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.custom-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
}

.custom-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.8rem;
  height: 0.8rem;
  background-color: var(--primary-light);
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Button Styles */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

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

.btn-secondary:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-accept {
  background-color: var(--success-color);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-accept:hover {
  opacity: 0.9;
}

.btn-customize {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-customize:hover {
  background-color: var(--background-alt);
}

.btn-reject {
  background-color: transparent;
  color: var(--error-color);
  border: 1px solid var(--error-color);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

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

/* Header Styles */
header {
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  width: 80px;
  height: auto;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: var(--secondary-color);
  font-weight: 500;
  position: relative;
  padding-bottom: 0.3rem;
}

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

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

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

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

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

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

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

/* Page Banner */
.page-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/page-banner.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 4rem 1rem;
}

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

.page-banner h1 {
  color: white;
  margin-bottom: 1rem;
}

.page-banner p {
  font-size: 1.2rem;
}

/* Features Section */
.features {
  padding: 4rem 1rem;
  background-color: var(--background-alt);
}

.feature-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  flex: 1;
  min-width: 250px;
  margin: 1rem;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-10px);
  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: 50px;
  height: 50px;
}

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

/* Latest Posts Section */
.latest-posts {
  padding: 4rem 1rem;
  text-align: center;
}

.latest-posts h2 {
  margin-bottom: 3rem;
}

.post-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.post-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.post-image {
  height: 200px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  margin-bottom: 0.5rem;
}

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

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

.center-btn {
  margin-top: 3rem;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 1rem;
  background-color: var(--background-alt);
  text-align: center;
}

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

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.client-info h4 {
  margin-bottom: 0.2rem;
}

/* Blog Page Styles */
.blog-content {
  padding: 4rem 1rem;
}

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

.blog-post {
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.blog-post:last-child {
  border-bottom: none;
}

.post-header {
  margin-bottom: 1.5rem;
}

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

.blog-post .post-image {
  height: auto;
  margin-bottom: 1rem;
}

.blog-post h2 {
  margin-top: 1rem;
}

/* Services Page Styles */
.services-intro {
  text-align: center;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.services-list {
  padding: 2rem 0;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4rem;
  gap: 2rem;
}

.service-image {
  flex: 1;
  min-width: 300px;
}

.service-details {
  flex: 2;
  min-width: 300px;
}

.service-item.reverse {
  flex-direction: row-reverse;
}

/* Pricing Section */
.pricing {
  background-color: var(--background-alt);
  padding: 4rem 0;
  text-align: center;
}

.pricing h2 {
  margin-bottom: 3rem;
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.pricing-column {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.pricing-header {
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem;
}

.pricing-details {
  padding: 1.5rem;
}

.pricing-details ul {
  text-align: left;
}

.pricing-details li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed #eee;
}

.package-detail {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  text-align: right;
}

.pricing-note {
  font-size: 0.9rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Service Booking CTA */
.service-booking-cta {
  text-align: center;
  padding: 4rem 0;
}

.service-booking-cta h2 {
  margin-bottom: 1rem;
}

.service-booking-cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

/* About Us Page Styles */
.about-intro {
  padding: 2rem 0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-text {
  flex: 2;
  min-width: 300px;
}

/* Our Values Section */
.our-values {
  background-color: var(--background-alt);
  padding: 4rem 0;
  text-align: center;
}

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

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.value-item {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

.value-icon svg {
  width: 40px;
  height: 40px;
}

/* Team Section */
.team-section {
  padding: 4rem 0;
  text-align: center;
}

.team-section h2 {
  margin-bottom: 3rem;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.team-member {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  padding-bottom: 1.5rem;
}

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

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

.team-member h3 {
  margin: 1rem 0 0.3rem;
}

.team-member p {
  padding: 0 1.5rem;
  margin-bottom: 0.7rem;
}

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

.social-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.social-links a {
  color: var(--text-light);
  transition: var(--transition);
}

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

/* Certifications Section */
.certifications {
  background-color: var(--background-alt);
  padding: 4rem 0;
}

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

.certifications-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.certifications-text {
  flex: 2;
  min-width: 300px;
}

.certifications-logos {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.certifications-logos img {
  width: 100%;
  height: auto;
}

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

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Contact Page Styles */
.contact-content {
  padding: 4rem 0;
}

.contact-info-form {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

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

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

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

.info-text h3 {
  margin-bottom: 0.5rem;
}

.social-connect {
  margin-top: 3rem;
}

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

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

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

/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 300px;
}

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

.form-group.full-width {
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

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

.checkbox-container input {
  width: auto;
  margin-right: 0.8rem;
  margin-top: 0.3rem;
}

.checkbox-container label {
  margin-bottom: 0;
  font-weight: normal;
}

/* Map Section */
.map-section {
  padding: 2rem 0 4rem;
  text-align: center;
}

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

.map-placeholder {
  width: 100%;
  height: 400px;
  background-color: #eee;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

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

.close-modal {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
}

.close-modal:hover {
  color: var(--text-color);
}

.modal-body {
  text-align: center;
}

.modal-icon {
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.modal-body h2 {
  margin-bottom: 1rem;
}

.modal-body p {
  margin-bottom: 2rem;
}

/* Footer Styles */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 4rem 5% 1rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.footer-logo img {
  width: 80px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-links, .footer-contact, .footer-social {
  flex: 1;
  min-width: 200px;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-links h4::after, .footer-contact h4::after, .footer-social h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.footer-links a, .footer-contact a {
  color: #ddd;
  transition: var(--transition);
}

.footer-links a:hover, .footer-contact a:hover {
  color: var(--primary-color);
  padding-left: 0.3rem;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: #ddd;
}

.footer-contact svg {
  margin-right: 0.8rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-social .social-icons a {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

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

.legal-links a {
  color: #aaa;
}

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

/* Cookie Banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--background-color);
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.cookie-more {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 900px) {
  .service-item, .service-item.reverse {
    flex-direction: column;
  }
  
  .about-content, .certifications-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 1rem;
  }
  
  .logo-container {
    margin-bottom: 1rem;
  }
  
  .nav-links {
    width: 100%;
    justify-content: space-between;
    margin-top: 1rem;
  }
  
  .nav-links li {
    margin-left: 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .feature, .post-card, .testimonial, .pricing-column, .value-item, .team-member {
    min-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .footer-logo, .footer-links, .footer-contact, .footer-social {
    max-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
  }
  
  .legal-links {
    justify-content: center;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}
