/* Base Styles */
:root {
  --color-primary: #e0a9af;
  --color-primary-dark: #c68991;
  --color-primary-light: #f3d5d9;
  --color-secondary: #6d464a;
  --color-secondary-light: #8f7073;
  --color-text: #333333;
  --color-text-light: #777777;
  --color-background: #ffffff;
  --color-background-alt: #f9f5f6;
  --color-border: #e7e7e7;
  --color-success: #4caf50;
  --color-error: #f44336;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Raleway', sans-serif;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 20px;
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

section {
  padding: 80px 0;
}

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

.section-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
  margin: 15px auto 0;
}

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

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

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

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

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

.center-btn {
  text-align: center;
  margin-top: 30px;
}

/* Header */
header {
  background-color: var(--color-background);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
}

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

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

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

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

nav ul li a {
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

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

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

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: var(--color-secondary);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background-color: var(--color-background-alt);
  padding: 120px 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

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

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: var(--color-text);
}

/* Features Section */
.features {
  background-color: var(--color-background);
}

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

.feature-item {
  padding: 30px;
  text-align: center;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

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

.feature-icon svg {
  color: var(--color-secondary);
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Latest Posts Section */
.latest-posts {
  background-color: var(--color-background-alt);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

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

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

.post-content {
  padding: 20px;
}

.post-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.post-content p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  position: relative;
}

.read-more:after {
  content: '→';
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover:after {
  margin-left: 10px;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--color-background);
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial {
  flex: 0 0 calc(50% - 15px);
  background-color: var(--color-background-alt);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
}

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

.testimonial-content p:before {
  left: 0;
  top: -10px;
}

.testimonial-content p:after {
  right: 0;
  bottom: -20px;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

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

.client-details h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.client-details p {
  color: var(--color-text-light);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Checklist Section */
.checklist-section {
  background-color: var(--color-background-alt);
  padding: 60px 0;
}

.checklist-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--color-background);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

.checklist-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.checklist-item input[type="checkbox"] {
  margin-right: 15px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  position: relative;
}

.checklist-item input[type="checkbox"]:checked {
  background-color: var(--color-primary);
}

.checklist-item input[type="checkbox"]:checked:after {
  content: '✓';
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
}

.checklist-item label {
  font-size: 1rem;
  cursor: pointer;
}

/* Poll Section */
.poll-section {
  background-color: var(--color-background);
  padding: 60px 0;
}

.poll-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--color-background-alt);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

.poll-container h3 {
  text-align: center;
  margin-bottom: 30px;
}

.poll-option {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.poll-option input[type="radio"] {
  margin-right: 15px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  position: relative;
}

.poll-option input[type="radio"]:checked {
  border-color: var(--color-primary);
}

.poll-option input[type="radio"]:checked:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.poll-option label {
  font-size: 1rem;
  cursor: pointer;
}

.poll-results {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
}

.poll-results h4 {
  margin-bottom: 20px;
}

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

.result-label {
  flex: 0 0 120px;
  font-weight: 600;
}

.progress {
  flex: 1;
  height: 10px;
  background-color: var(--color-border);
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--color-primary);
}

.result-percent {
  margin-left: 15px;
  font-weight: 600;
  width: 50px;
  text-align: right;
}

/* Page Header */
.page-header {
  background-color: var(--color-background-alt);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Blog Content */
.blog-content {
  padding: 80px 0;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.blog-post {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 60px;
}

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

.blog-post .post-image {
  height: 400px;
  margin-bottom: 20px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.post-details {
  display: flex;
  margin-bottom: 15px;
}

.post-date, .post-category {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.post-date {
  margin-right: 20px;
}

.post-category {
  position: relative;
  padding-left: 20px;
}

.post-category:before {
  content: '•';
  position: absolute;
  left: 0;
}

.blog-post h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.post-excerpt p {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

/* Services Intro */
.services-intro {
  padding-bottom: 40px;
}

.intro-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.intro-text {
  flex: 1;
}

.intro-image {
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Service Listing */
.service-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-card {
  display: flex;
  gap: 40px;
  background-color: var(--color-background-alt);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-image {
  flex: 0 0 35%;
  position: relative;
  overflow: hidden;
}

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

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

.service-content {
  flex: 1;
  padding: 30px;
}

.service-content h3 {
  margin-bottom: 15px;
}

.service-content ul {
  margin-bottom: 20px;
}

.service-content li {
  margin-bottom: 8px;
}

.service-price {
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
  padding-top: 15px;
  border-top: 1px dashed var(--color-border);
}

/* Testimonial Section */
.testimonial-section {
  background-color: var(--color-background-alt);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: var(--color-background);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-content {
  flex: 1;
}

.testimonial-content p {
  font-style: italic;
  position: relative;
  padding: 0 15px;
  margin-bottom: 20px;
}

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

.testimonial-content p:before {
  left: 0;
  top: -5px;
}

.testimonial-content p:after {
  right: 0;
  bottom: -15px;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.client-info h4 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.client-info p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
  background-color: var(--color-background);
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: var(--color-background-alt);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
  flex: 1;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 700;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 1000px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* CTA Section */
.cta-section {
  background-color: var(--color-primary-light);
  padding: 80px 0;
}

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

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

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

/* Team Section */
.team-section {
  background-color: var(--color-background-alt);
}

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

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

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

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

.team-member h3 {
  margin: 20px 20px 5px;
  font-size: 1.3rem;
}

.team-member p {
  margin: 0 20px 15px;
  color: var(--color-text-light);
}

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

.member-social {
  display: flex;
  gap: 15px;
  margin: 0 20px 20px;
}

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

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

.member-social a:hover svg {
  color: white;
}

.member-social svg {
  color: var(--color-secondary);
  transition: var(--transition);
}

/* Values Section */
.values-section {
  background-color: var(--color-background);
}

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

.value-card {
  padding: 30px;
  text-align: center;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background-color: var(--color-background-alt);
}

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

.value-icon {
  width: 80px;
  height: 80px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon svg {
  color: var(--color-secondary);
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.value-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Credentials Section */
.credentials-section {
  background-color: var(--color-background-alt);
}

.credentials-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.credentials-text {
  flex: 1;
}

.credentials-text ul {
  margin-bottom: 20px;
}

.credentials-text li {
  margin-bottom: 10px;
}

.credentials-logos {
  flex: 0 0 40%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Studio Section */
.studio-section {
  background-color: var(--color-background);
}

.studio-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.studio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

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

/* Contact Section */
.contact-section {
  background-color: var(--color-background);
  padding: 80px 0;
}

.contact-content {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.info-item {
  display: flex;
  margin-bottom: 30px;
}

.info-icon {
  flex: 0 0 60px;
  height: 60px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.info-icon svg {
  color: var(--color-secondary);
}

.info-text h3 {
  margin-bottom: 5px;
}

.info-text p {
  margin-bottom: 5px;
}

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

.social-connect {
  margin-top: 40px;
}

.social-connect h3 {
  margin-bottom: 15px;
}

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

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

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

.social-icons a:hover svg {
  color: white;
}

.social-icons svg {
  color: var(--color-secondary);
  transition: var(--transition);
}

.contact-form-container {
  flex: 1;
  background-color: var(--color-background-alt);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-container h2 {
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 0 0 calc(50% - 10px);
}

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

.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(--color-border);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

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

.checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
}

/* Map Section */
.map-section {
  background-color: var(--color-background-alt);
  padding: 60px 0;
}

.map-container {
  position: relative;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  text-align: center;
}

.map-overlay p {
  margin-bottom: 10px;
}

.map-overlay p:last-child {
  margin-bottom: 0;
}

/* Business Hours */
.business-hours {
  background-color: var(--color-background);
  padding: 60px 0;
}

.hours-container {
  max-width: 700px;
  margin: 0 auto;
}

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

.day {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background-color: var(--color-background-alt);
  border-radius: var(--border-radius);
}

.day-name {
  font-weight: 600;
}

.hours-note {
  text-align: center;
  font-style: italic;
  color: var(--color-text-light);
}

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

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

.footer-logo img {
  max-height: 80px;
  margin-bottom: 20px;
  background-color: white;
  padding: 10px;
  border-radius: var(--border-radius);
}

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

.footer-info p {
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--color-primary);
}

.footer-social .social-icons {
  margin-top: 15px;
}

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

.footer-social .social-icons svg {
  color: white;
}

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

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

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

.cookie-content {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  flex: 1 0 100%;
  margin-bottom: 15px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 16px;
  font-size: 0.9rem;
}

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

.cookie-btn.outline:hover {
  border-color: var(--color-text);
  color: var(--color-text);
}

.cookie-more {
  margin-left: auto;
  font-size: 0.9rem;
  text-decoration: underline;
}

/* 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: 1000;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.modal-content h2 {
  margin-bottom: 15px;
}

.modal-content p {
  margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .intro-content {
    flex-direction: column;
  }
  
  .service-card {
    flex-direction: column;
  }
  
  .service-image {
    flex: 0 0 250px;
  }
  
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .credentials-content {
    flex-direction: column;
  }
  
  .contact-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .feature-grid,
  .post-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial {
    flex: 0 0 100%;
  }
  
  .studio-gallery {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .feature-item,
  .post-card,
  .team-member,
  .value-card {
    transform: none !important;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .btn {
    padding: 10px 20px;
  }
  
  .form-group {
    flex: 0 0 100%;
  }
  
  .modal-content {
    padding: 30px 20px;
  }
}
