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

:root {
  /* Pink theme colors matching the logo */
  --primary: #f3d6ce;
  --secondary: #fdf9f7;
  --accent: #f0c4b6;
  --neutral: #1f2937;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--neutral);
  background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--neutral);
}

.section-description {
  font-size: 1.125rem;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
  color: var(--neutral);
  margin-bottom: 4rem;
}

.section-header {
  margin-bottom: 4rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: #c026d3;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 70, 239, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 0.5rem 1rem;
}

.btn-ghost:hover {
  color: var(--neutral);
  background-color: rgba(217, 70, 239, 0.1);
}

.arrow {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-ghost:hover .arrow {
  transform: translateX(4px);
}

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

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

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

.logo-image {
  width: 6.75rem;
  height: 6.75rem;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 10;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--neutral);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.125rem;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--neutral);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom right, var(--secondary), var(--white));
  padding: 5rem 1rem;
  position: relative;
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--neutral);
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--neutral);
  line-height: 1.7;
}

.hero-image {
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--white);
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: var(--primary);
  font-size: 1rem;
}

.badge-text {
  font-weight: 600;
  color: var(--neutral);
  font-size: 0.875rem;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: var(--white);
}

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

.service-card {
  background: linear-gradient(to bottom right, var(--secondary), var(--white));
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.service-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--neutral);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--neutral);
}

.service-description {
  color: var(--neutral);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

/* Process Section */
.process {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, var(--secondary), var(--white));
}

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

.process-step {
  text-align: center;
}

.step-number {
  width: 5rem;
  height: 5rem;
  background-color: var(--primary);
  border: 2px solid var(--neutral);
  color: var(--neutral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-accent {
  background-color: var(--accent);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--neutral);
}

.step-description {
  color: var(--neutral);
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: var(--white);
  color: var(--primary);
  padding: 3rem 0;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  border-radius: 50%;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-description {
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--primary);
  transition: color 0.3s ease;
}

.social-link:hover {
  color: rgba(243, 214, 206, 0.7);
}

.footer-heading {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

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

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

.footer-link {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
}

.contact-info p {
  color: #000000;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(243, 214, 206, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #000000;
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(to bottom right, var(--secondary), var(--white));
  padding: 5rem 1rem;
}

.about-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--neutral);
}

.about-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--primary);
  font-weight: 600;
}

.about-description {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--neutral);
  line-height: 1.7;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-img {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-choose {
  padding: 5rem 0;
  background-color: var(--white);
}

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

.feature-card {
  background: linear-gradient(to bottom right, var(--secondary), var(--white));
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--neutral);
}

.feature-description {
  font-size: 1rem;
  color: var(--neutral);
  line-height: 1.6;
}

.my-approach {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, var(--secondary), var(--white));
}

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

.approach-heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--neutral);
}

.approach-description {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--neutral);
  line-height: 1.7;
}

.approach-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.approach-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-number {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-text {
  font-size: 1rem;
  color: var(--neutral);
  font-weight: 500;
}

/* Services Page Styles */
.services-hero {
  background: linear-gradient(to bottom right, var(--secondary), var(--white));
  padding: 4rem 1rem 2rem;
  text-align: center;
}

.services-title {
  font-size: 3rem;
  color: var(--neutral);
  margin-bottom: 1rem;
}

.services-subtitle {
  font-size: 1.25rem;
  color: var(--neutral);
  max-width: 42rem;
  margin: 0 auto;
}

.service-card-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.service-card-section.alternate {
  background: linear-gradient(to bottom right, var(--secondary), var(--white));
}

.service-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.service-card-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 350px;
}

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

.service-card-content.reverse .service-card-text {
  order: 2;
}

.service-card-content.reverse .service-card-image {
  order: 1;
}

.service-card-text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-title {
  font-size: 2.5rem;
  color: var(--neutral);
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.service-card-subtitle {
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.service-card-description {
  color: var(--neutral);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
}

.service-card-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
}

.service-card-image {
  position: relative;
  overflow: hidden;
}

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

.how-it-works {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, var(--secondary), var(--white));
}

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

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 5rem;
  height: 5rem;
  background-color: var(--primary);
  border: 2px solid var(--neutral);
  color: var(--neutral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-accent {
  background-color: var(--accent);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--neutral);
}

.step-description {
  color: var(--neutral);
  line-height: 1.6;
}

/* Blog Page Styles */
.blog-hero {
  background: linear-gradient(to bottom right, var(--secondary), var(--white));
  padding: 4rem 1rem 2rem;
  text-align: center;
}

.blog-title {
  font-size: 3rem;
  color: var(--neutral);
  margin-bottom: 1rem;
}

.blog-subtitle {
  font-size: 1.25rem;
  color: var(--neutral);
  max-width: 42rem;
  margin: 0 auto;
}

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

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

.blog-post {
  background: linear-gradient(to bottom right, var(--secondary), var(--white));
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

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

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

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

.post-content {
  padding: 1.5rem;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.post-date {
  color: var(--gray-600);
}

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

.post-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--neutral);
  line-height: 1.3;
}

.post-excerpt {
  color: var(--neutral);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.post-read-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.post-read-more:hover {
  color: var(--neutral);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.pagination-btn {
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-300);
  background: var(--white);
  color: var(--neutral);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.newsletter-section {
  padding: 4rem 0;
  background: linear-gradient(to bottom right, var(--secondary), var(--white));
  text-align: center;
}

.newsletter-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--neutral);
}

.newsletter-description {
  color: var(--neutral);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 32rem;
  margin: 0 auto 1rem;
}

/* Gallery Page Styles */
.gallery-header {
  background: linear-gradient(to bottom right, var(--secondary), var(--white));
  padding: 4rem 1rem 2rem;
  text-align: center;
}

.gallery-title {
  font-size: 3rem;
  color: var(--neutral);
  margin-bottom: 1rem;
}

.gallery-description {
  font-size: 1.25rem;
  color: var(--neutral);
  max-width: 42rem;
  margin: 0 auto;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  aspect-ratio: 1;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Blog Post Styles */
.blog-post-hero {
  position: relative;
  padding: 2rem 1rem 0;
  background: linear-gradient(to bottom right, var(--secondary), var(--white));
}

.hero-image-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  height: 400px;
  overflow: hidden;
  border-radius: 1rem;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
}

.blog-post-header {
  background: linear-gradient(to bottom right, var(--secondary), var(--white));
  padding: 2rem 1rem 3rem;
  text-align: center;
}

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

.post-meta-large {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.post-meta-large .post-date {
  color: var(--gray-600);
}

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

.post-title-large {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--neutral);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.post-intro {
  font-size: 1.25rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.post-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.author-name {
  font-weight: 600;
  color: var(--neutral);
}

.author-title {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.blog-post-content {
  padding: 4rem 0;
  background-color: var(--white);
}

.post-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.post-paragraph {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}

.post-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--neutral);
  margin: 2.5rem 0 1rem 0;
  line-height: 1.3;
}

.post-subheading {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral);
  margin: 2rem 0 1rem 0;
  line-height: 1.4;
}

.post-list {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.post-list li {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.post-list li strong {
  color: var(--neutral);
  font-weight: 600;
}

.post-cta {
  background: linear-gradient(to bottom right, var(--secondary), var(--white));
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}

.post-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--neutral);
  margin-bottom: 1rem;
}

.post-cta p {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--neutral);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .post-title-large {
    font-size: 2.25rem;
  }
  
  .post-heading {
    font-size: 1.75rem;
  }
  
  .post-subheading {
    font-size: 1.25rem;
  }
  
  .post-author {
    flex-direction: column;
    text-align: center;
  }
  
  .author-info {
    text-align: center;
  }
}


/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  z-index: 20;
}

.lightbox-nav:hover {
  background: rgba(0, 0, 0, 0.7);
}

.lightbox-prev {
  left: -4rem;
}

.lightbox-next {
  right: -4rem;
}

/* Hide navigation arrows on small screens */
@media (max-width: 768px) {
  .lightbox-prev {
    left: 1rem;
  }
  
  .lightbox-next {
    right: 1rem;
  }
}

.lightbox-image {
  width: 100%;
  height: 100%;
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1.5rem;
  color: white;
  border-radius: 0 0 0.5rem 0.5rem;
}

.lightbox-category {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 0.25rem;
  color: var(--accent);
}

.lightbox-description {
  font-size: 1.125rem;
  line-height: 1.5;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem;
  border: 2px solid var(--gray-300);
  border-radius: 0.5rem;
  font-size: 1rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-note {
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* Call to Action Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(to bottom right, var(--primary), var(--accent));
  text-align: center;
}

.cta-content {
  max-width: 42rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--white);
  opacity: 0.9;
}

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

.cta-section .btn-primary:hover {
  background-color: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-toggle {
    display: flex;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-container,
  .about-hero-content,
  .approach-content,
  .service-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-title,
  .about-title {
    font-size: 2.5rem;
  }
  
  .section-title,
  .services-title,
  .blog-title {
    font-size: 2rem;
  }
  
  .services-grid,
  .features-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps,
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .service-card-content,
  .service-card-content.reverse {
    grid-template-columns: 1fr;
  }
  
  .service-card-content.reverse .service-card-text,
  .service-card-content.reverse .service-card-image {
    order: unset;
  }
  
  .service-card-text {
    padding: 2rem;
  }
  
  .service-card-title {
    font-size: 2rem;
  }
  
  .service-card-img {
    min-height: 300px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-title,
  .about-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .section-title,
  .services-title,
  .blog-title {
    font-size: 1.75rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .hero-badge {
    position: static;
    margin-top: 1rem;
    align-self: center;
  }
  
  .about-img {
    width: 250px;
    height: 250px;
  }
  
  .service-heading {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}