/* Base Styles */
:root {
  --primary-color: #e08caf;
  --primary-dark: #c26e8f;
  --primary-light: #f7d7e5;
  --secondary-color: #7d4e5b;
  --accent-color: #56203d;
  --text-color: #333333;
  --text-light: #666666;
  --background-color: #ffffff;
  --background-alt: #f9f5f7;
  --border-color: #e1e1e1;
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --font-family-base: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-family-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --transition-base: all 0.3s ease;
  --max-width: 1200px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-weight: 700;
}

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.8rem;
}

h6 {
  font-size: 1.6rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

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

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 2rem;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

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

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

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

.btn-text {
  background: none;
  border: none;
  color: var(--primary-color);
  text-decoration: underline;
  padding: 0;
  font-weight: 600;
}

.btn-text:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.btn-large {
  padding: 1.5rem 3rem;
  font-size: 1.8rem;
}

/* Header & Navigation */
header {
  background-color: var(--background-color);
  padding: 2rem 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

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

.logo-container img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-container h1 {
  font-size: 2.4rem;
  margin-bottom: 0;
  color: var(--accent-color);
}

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

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

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

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

nav a.active {
  color: var(--primary-color);
  font-weight: 600;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: var(--transition-base);
}

/* Hero Section */
.hero {
  height: 80vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
}

.hero h2 {
  font-size: 4.2rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 2rem;
  margin-bottom: 3rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Page Banner */
.page-banner {
  background-color: var(--primary-light);
  padding: 6rem 0;
  text-align: center;
}

.page-banner h2 {
  font-size: 3.6rem;
  margin-bottom: 1rem;
}

.page-banner p {
  font-size: 1.8rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Intro Section */
.intro {
  padding: 8rem 0;
}

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

.intro-text h3 {
  font-style: italic;
  color: var(--secondary-color);
  margin: 3rem 0;
}

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

/* Featured Posts */
.featured-posts {
  padding: 8rem 0;
  background-color: var(--background-alt);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.post-card {
  background-color: var(--background-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-image {
  height: 220px;
  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: 2rem;
}

.post-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

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

.read-more:after {
  content: '→';
  margin-left: 5px;
  transition: transform 0.3s ease;
}

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

.view-all {
  text-align: center;
  margin-top: 4rem;
}

/* Services Preview */
.services-preview {
  padding: 8rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.service-card {
  background-color: var(--background-alt);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: var(--transition-base);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50%;
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

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

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

.testimonial {
  padding: 0 3rem;
}

.testimonial-content {
  background-color: var(--background-color);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-content:before {
  content: """;
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 8rem;
  line-height: 1;
  color: var(--primary-light);
  font-family: var(--font-family-heading);
  opacity: 0.5;
}

.testimonial p {
  font-style: italic;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.testimonial-author {
  margin-top: 2rem;
}

.testimonial-author .name {
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.2rem;
}

.testimonial-author .title {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-base);
}

.dot.active {
  background-color: var(--primary-color);
}

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

.cta h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: var(--accent-color);
  color: white;
  padding-top: 6rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}

.footer-logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  object-fit: cover;
}

.footer-logo h3 {
  color: white;
  margin-bottom: 1rem;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  color: white;
  margin-bottom: 2rem;
}

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

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

.footer-links a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-base);
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-contact i {
  margin-right: 1rem;
}

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

.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%;
  transition: var(--transition-base);
  color: white;
}

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

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

.footer-bottom {
  margin-top: 6rem;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-bottom p {
  font-size: 1.4rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

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

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

.cookie-content p {
  margin-bottom: 1.5rem;
  max-width: 800px;
}

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

.btn-accept,
.btn-customize,
.btn-decline {
  padding: 0.8rem 1.6rem;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-accept {
  background-color: var(--success-color);
  color: white;
  border: none;
}

.btn-customize {
  background-color: var(--info-color);
  color: white;
  border: none;
}

.btn-decline {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-color);
}

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

.btn-decline:hover {
  background-color: var(--border-color);
}

.cookie-content a {
  font-size: 1.4rem;
}

/* Blog Page Styles */
.blog-filters {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.search-box {
  display: flex;
  max-width: 400px;
  width: 100%;
}

.search-box input {
  flex-grow: 1;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
  font-size: 1.6rem;
}

.search-box button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  padding: 0 1.5rem;
  cursor: pointer;
  transition: var(--transition-base);
}

.search-box button:hover {
  background-color: var(--primary-dark);
}

.search-box svg {
  width: 20px;
  height: 20px;
}

.category-filter select {
  padding: 1rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  font-size: 1.6rem;
  min-width: 200px;
  background-color: white;
}

.blog-content {
  padding: 6rem 0;
}

.blog-post {
  margin-bottom: 6rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.blog-post:last-child {
  margin-bottom: 0;
}

.blog-post .post-image {
  height: 100%;
  min-height: 300px;
}

.post-details {
  padding: 2rem 0;
}

.post-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: var(--text-light);
}

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

.post-tags {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.post-tags span {
  font-weight: 600;
}

.post-tags a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--background-alt);
  border-radius: var(--border-radius-sm);
  font-size: 1.4rem;
  transition: var(--transition-base);
}

.post-tags a:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.post-share {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-share span {
  font-weight: 600;
}

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--background-alt);
  border-radius: 50%;
  transition: var(--transition-base);
}

.post-share a:hover {
  background-color: var(--primary-light);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 6rem;
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--background-alt);
  font-weight: 600;
  transition: var(--transition-base);
}

.pagination a.next {
  width: auto;
  padding: 0 1.5rem;
  border-radius: var(--border-radius-md);
}

.pagination a.active,
.pagination a:hover {
  background-color: var(--primary-color);
  color: white;
}

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

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

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  font-size: 1.6rem;
}

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

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

.services-intro-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.service-details {
  padding: 6rem 0;
}

.service-details:nth-child(odd) {
  background-color: var(--background-alt);
}

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

.service-card.reversed {
  grid-template-columns: 1fr 1fr;
}

.service-card.reversed .service-image {
  order: 2;
}

.service-card.reversed .service-content {
  order: 1;
}

.service-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-content h3 {
  margin-bottom: 2rem;
}

.service-content h4 {
  margin: 2.5rem 0 1.5rem;
  color: var(--secondary-color);
}

.service-content ul {
  margin-bottom: 2.5rem;
}

.service-content li {
  margin-bottom: 1rem;
}

.service-cta {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.additional-services {
  padding: 6rem 0;
  background-color: var(--background-alt);
}

.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.additional-service {
  background-color: var(--background-color);
  padding: 3rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.additional-service:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  margin-bottom: 2rem;
}

.additional-service h4 {
  margin-bottom: 1rem;
}

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

.additional-service .price {
  font-size: 1.6rem;
  margin-top: auto;
}

.faq {
  padding: 6rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.faq-item {
  padding: 2.5rem;
  background-color: var(--background-alt);
  border-radius: var(--border-radius-md);
}

.faq-item h4 {
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

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

/* About Page Styles */
.about-story {
  padding: 6rem 0;
}

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

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

.philosophy {
  padding: 6rem 0;
  background-color: var(--background-alt);
}

.philosophy-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.philosophy-item {
  text-align: center;
  padding: 3rem;
  background-color: var(--background-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.philosophy-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

.philosophy-icon svg {
  width: 35px;
  height: 35px;
}

.philosophy-item h4 {
  margin-bottom: 1.5rem;
}

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

.team {
  padding: 6rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 4rem;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}

.team-member h3 {
  margin-bottom: 0.5rem;
}

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

.team-member .social-icons {
  margin-top: 2rem;
  justify-content: center;
}

.certifications {
  padding: 6rem 0;
  background-color: var(--background-alt);
}

.certifications-content {
  margin-top: 4rem;
}

.certification {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background-color: var(--background-color);
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.certification:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.certification-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certification-icon svg {
  width: 30px;
  height: 30px;
}

.certification-text h4 {
  margin-bottom: 0.5rem;
}

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

.studio {
  padding: 6rem 0;
}

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

.studio-text h4 {
  margin: 3rem 0 1.5rem;
}

.studio-hours {
  list-style: none;
  padding: 0;
  margin-bottom: 3rem;
}

.studio-hours li {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.studio-hours li:last-child {
  border-bottom: none;
}

.studio-hours span {
  font-weight: 600;
}

.studio-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.studio-images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

/* Contact Page Styles */
.contact-intro {
  padding: 6rem 0;
}

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

.contact-intro-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-content {
  padding: 0 0 6rem;
}

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

.contact-form-container {
  background-color: var(--background-alt);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

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

.form-group {
  margin-bottom: 0;
}

.form-group.full-width {
  grid-column: span 2;
}

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

.form-group .required {
  color: var(--error-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  font-size: 1.6rem;
  font-family: var(--font-family-base);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.checkbox-group input {
  width: auto;
}

.checkbox-group label {
  margin-bottom: 0;
}

.btn-submit {
  grid-column: span 2;
  margin-top: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.contact-details {
  background-color: var(--background-alt);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-text h4 {
  margin-bottom: 0.5rem;
}

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

.hours-list {
  list-style: none;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.hours-list li:last-child {
  margin-bottom: 0;
}

.hours-list span {
  font-weight: 600;
  min-width: 120px;
}

.social-connect {
  background-color: var(--background-alt);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.social-connect .social-icons {
  margin-top: 2rem;
  justify-content: center;
}

.map-section {
  padding: 6rem 0;
  background-color: var(--background-alt);
}

.map-container {
  height: 450px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 3rem;
}

.map-container iframe {
  border: 0;
}

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

.modal-content {
  background-color: var(--background-color);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}

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

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

.modal-icon {
  width: 80px;
  height: 80px;
  background-color: var(--success-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

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

.modal-content h3 {
  margin-bottom: 1.5rem;
}

.modal-content p {
  margin-bottom: 3rem;
}

.btn-close-modal {
  background-color: var(--success-color);
}

.btn-close-modal:hover {
  background-color: var(--success-color);
  opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .services-grid,
  .additional-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .philosophy-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  html {
    font-size: 55%;
  }
  
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .intro-content,
  .about-story-content,
  .services-intro-content,
  .service-card,
  .service-card.reversed,
  .studio-content,
  .contact-intro-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card.reversed .service-image {
    order: 1;
  }
  
  .service-card.reversed .service-content {
    order: 2;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--background-color);
    padding: 8rem 2rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    z-index: 100;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 2rem;
  }
  
  nav a {
    display: block;
    padding: 1rem 0;
    font-size: 1.8rem;
  }
  
  .hero h2 {
    font-size: 3.6rem;
  }
  
  .posts-grid,
  .services-grid,
  .additional-services-grid,
  .philosophy-content,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .blog-filters {
    flex-direction: column;
    gap: 2rem;
  }
  
  .search-box {
    max-width: 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .service-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width,
  .btn-submit {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .studio-images {
    grid-template-columns: 1fr;
  }
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}
