@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
h1, h2, h3, h4, h5, h6{ font-family: "Montserrat", sans-serif;}
p{ font-family: "Poppins", sans-serif;}

/* Page Hero */
.page-hero {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.page-hero-content {
  text-align: center;
  color: var(--text-white);
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.6;
  background-color: var(--accent-color);
}

/* Story Section */
.story-section {
  padding: 8rem 0;
  background: var(--text-white);
  position: relative;
}

.story-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(207, 174, 109, 0.02) 0%, rgba(46, 139, 87, 0.02) 100%);
  pointer-events: none;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.story-text h2 {
  color: var(--primary-color);
  margin-bottom: 2.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
}

.story-text p {
  margin-bottom: 2rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.story-highlights {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-color);
  display: flex;
  gap: 15px;
}

.highlight-item img{ width: 78px;}



.highlight-item:last-child {
  margin-bottom: 0;
}

.highlight-item i {
  color: var(--accent-color);
  font-size: 1.4rem;
  width: 24px;
  text-align: center;
}

.story-visual {
  position: relative;
}

.story-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transform: rotate(2deg);
  transition: var(--transition);
}

.story-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.story-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
  display: block;
}

.image-decoration {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: var(--gradient-accent);
  border-radius: 50%;
  opacity: 0.8;
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

/* Values Section */
.values-section {
  padding: 8rem 0;
  background: var(--bg-light);
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.value-card {
  background: var(--text-white);
  padding: 4rem 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(207, 174, 109, 0.1);
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(207, 174, 109, 0.1), transparent);
  transition: var(--transition);
}

.value-card:hover::before {
  left: 100%;
}

.value-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--accent-color);
}

.value-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  font-size: 2.5rem;
  color: var(--text-white);
  position: relative;
  z-index: 2;
}

.value-icon::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--accent-color), var(--accent-secondary));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.value-card:hover .value-icon::before {
  opacity: 0.3;
}

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.value-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

/* Team Section */
.team-section {
  padding: 8rem 0;
  background: var(--text-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}

.team-member {
  text-align: center;
  background: var(--text-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 1px solid rgba(207, 174, 109, 0.1);
}

.team-member:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--accent-color);
}

.member-image {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 31, 43, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.member-image:hover .member-overlay {
  opacity: 1;
}

.member-overlay .social-links {
  display: flex;
  gap: 1.5rem;
}

.member-overlay .social-links a {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: var(--transition);
  text-decoration: none;
  font-size: 1.2rem;
}

.member-overlay .social-links a:hover {
  transform: scale(1.2);
  background: var(--text-white);
  color: var(--accent-color);
}

.member-info {
  padding: 3rem 2rem;
}

.member-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.member-role {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.member-bio {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

/* Process Section - Fixed */
.process-section {
  padding: 8rem 0;
  background: var(--primary-color);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(207, 174, 109, 0.1) 0%, rgba(46, 139, 87, 0.1) 100%);
  pointer-events: none;
}

.process-section .section-header {
  position: relative;
  z-index: 2;
}

.process-section .section-title {
  color: var(--text-white);
}

.process-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.process-timeline {
  max-width: 1000px;
  margin: 4rem auto 0;
  position: relative;
  z-index: 2;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent-color), var(--accent-secondary));
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 6rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: right;
}

.timeline-number {
  width: 100px;
  height: 100px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px var(--primary-color), 0 0 0 12px var(--accent-color);
  transition: var(--transition);
}

.timeline-item:hover .timeline-number {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px var(--primary-color), 0 0 0 16px var(--accent-color);
}

.timeline-content {
  flex: 1;
  padding: 0 4rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  
}

.timeline-content:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.timeline-content h3 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
  font-size: 1.1rem;
}

/* Awards Section */
.awards-section {
  padding: 8rem 0;
  background: var(--bg-light);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.award-item {
  background: var(--text-white);
  padding: 4rem 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 1px solid rgba(207, 174, 109, 0.1);
  position: relative;
  overflow: hidden;
}

.award-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(207, 174, 109, 0.1), transparent);
  transition: var(--transition);
}

.award-item:hover::before {
  left: 100%;
}

.award-item:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--accent-color);
}

.award-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  font-size: 2.5rem;
  color: var(--text-white);
  position: relative;
  z-index: 2;
}

.award-icon::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--accent-color), var(--accent-secondary));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.award-item:hover .award-icon::before {
  opacity: 0.3;
}

.award-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.award-item p {
  color: var(--accent-color);
  font-weight: 600;
  margin: 0;
  font-size: 1rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 400;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
  .story-content {
    gap: 4rem;
  }

  .timeline-content {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: 60vh;
    min-height: 400px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-image {
    transform: none;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 80px;
  }

  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
  }

  .timeline-number {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    box-shadow: 0 0 0 6px var(--primary-color), 0 0 0 10px var(--accent-color);
  }

  .timeline-content {
    padding: 2rem;
    margin-left: 2rem;
  }

  .values-grid,
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .member-overlay .social-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .story-section,
  .values-section,
  .team-section,
  .process-section,
  .awards-section {
    padding: 5rem 0;
  }
}

@media (max-width: 480px) {
  .page-hero-content {
    padding: 0 1rem;
  }

  .timeline-content {
    padding: 1.5rem;
    margin-left: 1rem;
  }

  .timeline-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    box-shadow: 0 0 0 4px var(--primary-color), 0 0 0 8px var(--accent-color);
  }

  .value-card,
  .award-item {
    padding: 3rem 2rem;
  }

  .member-info {
    padding: 2rem 1.5rem;
  }

  .story-highlights {
    padding: 1.5rem;
  }

  .highlight-item {
    gap: 1rem;
  }
}

/* Additional styles for other pages will be added here */

/* Products Page Styles */
.services-overview {
  padding: 6rem 0;
  background: var(--text-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--text-white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  text-align: center;
  border: 2px solid transparent;
}

.service-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.service-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--text-white);
}

.service-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 2rem 0;
}

/* Product Categories */
.product-categories {
  padding: 6rem 0;
  background: var(--bg-light);
}

.category-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--accent-color);
  background: transparent;
  color: var(--accent-color);
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent-color);
  color: var(--text-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-categories .product-card {
  background: var(--text-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  width: 100%;
  height: 100%;
}

.product-categories .product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.product-categories .product-image {
  position: relative;
  overflow: hidden;
}

.product-categories .product-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.product-categories .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 31, 43, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-categories .product-card:hover .product-overlay {
  opacity: 1;
}

.product-actions {
  display: flex;
  gap: 1rem;
}

.action-btn {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border: none;
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn:hover {
  transform: scale(1.1);
  background: var(--text-white);
  color: var(--accent-color);
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.product-category {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
}

.product-rating span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Featured Collection Slider */
.featured-collection {
  padding: 6rem 0;
  background: var(--primary-color);
  color: var(--text-white);
}

.collection-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.slider-container {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.slide-image {
  flex: 1;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(26, 31, 43, 0.9);
}

.slide-content h3 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.slide-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-family: var(--para);
}

.slide-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  transform: translateY(-50%);
}

.slider-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--accent-color);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--accent-color);
}

/* Design Process */
.design-process {
  padding: 6rem 0;
  background: var(--bg-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 auto 2rem;
}

.step-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Gallery Page Styles */
.gallery-filter-section {
  padding: 2rem 0;
  background: var(--text-white);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.gallery-grid {
  display: grid !important;
  flex-direction: column !important;
 
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.gallery-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 31, 43, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-content {
  text-align: center;
  color: var(--text-white);
}

.gallery-content h3 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.gallery-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.gallery-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.gallery-btn {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border: none;
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-btn:hover {
  transform: scale(1.1);
  background: var(--text-white);
  color: var(--accent-color);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.3s ease;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--accent-color);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  transform: translateY(-50%);
}

.lightbox-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-btn:hover {
  background: var(--accent-color);
}

/* Project Stats */
.project-stats {
  padding: 4rem 0;
  background: var(--primary-color);
  color: var(--text-white);
}

/* Contact Page Styles */
.contact-section {
  padding: 6rem 0;
  background: var(--text-white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.contact-details {
  margin: 3rem 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  flex-shrink: 0;
}

.contact-text h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-text p {
  color: var(--text-muted);
  margin: 0;
}

.contact-form-container {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  position: relative;
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--text-muted);
  transition: var(--transition);
  pointer-events: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 2px solid var(--text-muted);
  background: transparent;
  color: var(--text-dark);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--accent-color);
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  position: relative;
  top: 0;
  left: 0;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--text-muted);
  border-radius: 4px;
  position: relative;
  transition: var(--transition);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-white);
  font-size: 0.8rem;
}

.btn-loading {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

/* Map Section */
.map-section {
  padding: 0;
}

.map-container {
  height: 400px;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-content {
  text-align: center;
  color: var(--text-dark);
}

.map-content i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.map-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--text-white);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.faq-question {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question h3 {
  color: var(--primary-color);
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.faq-question i {
  color: var(--accent-color);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 2rem 2rem;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Blog Page Styles */
.featured-article {
  padding: 4rem 0;
  background: var(--text-white);
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.featured-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent-color);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.featured-text {
  padding: 2rem 0;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.article-category {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.article-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.featured-text h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.featured-text p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--primary-color);
}

.author-title {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Blog Categories */
.blog-categories {
  padding: 2rem 0;
  background: var(--bg-light);
}

/* Blog Grid */
.blog-section {
  padding: 4rem 0;
  background: var(--text-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--text-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.blog-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.read-time {
  background: rgba(26, 31, 43, 0.8);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-category {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.blog-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.blog-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-author .author-avatar {
  width: 40px;
  height: 40px;
}

.blog-author .author-name {
  font-weight: 600;
  color: var(--primary-color);
}

.blog-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.blog-link:hover {
  color: var(--primary-color);
}

.load-more-container {
  text-align: center;
  margin-top: 3rem;
}

/* Newsletter Section */
.newsletter-section {
  padding: 4rem 0;
  background: var(--primary-color);
  color: var(--text-white);
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-text h2 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.newsletter-form .form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.newsletter-form button {
  padding: 1rem 2rem;
  white-space: nowrap;
}

.newsletter-disclaimer {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .featured-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }
}

/* About Page Specific Styles */
.story-section {
  padding: 6rem 0;
  background: var(--text-white);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.story-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.story-highlights {
  margin-top: 2rem;
}

.highlight-item {
  
 
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.highlight-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.story-visual {
  position: relative;
}

.story-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.story-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--gradient-accent);
  border-radius: 50%;
  opacity: 0.8;
  z-index: -1;
}

/* Values Section */
.values-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--text-white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(207, 174, 109, 0.1), transparent);
  transition: var(--transition);
}

.value-card:hover::before {
  left: 100%;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--text-white);
}

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 6rem 0;
  background: var(--text-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.team-member {
  text-align: center;
  background: var(--text-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.member-image {
  position: relative;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 31, 43, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.member-image:hover .member-overlay {
  opacity: 1;
}

.member-overlay .social-links {
  display: flex;
  gap: 1rem;
}

.member-overlay .social-links a {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: var(--transition);
  text-decoration: none;
}

.member-overlay .social-links a:hover {
  transform: scale(1.1);
  background: var(--text-white);
  color: var(--accent-color);
}

.member-info {
  padding: 2rem;
}

.member-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.member-bio {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Process Section */
.process-section {
  padding: 6rem 0;
  background: var(--primary-color);
  color: var(--text-white);
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-color);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: right;
}

.timeline-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-content {
  flex: 1;
  padding: 0 3rem;
}

.timeline-content h3 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Awards Section */
.awards-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.award-item {
  background: var(--text-white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.award-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.award-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--text-white);
}

.award-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.award-item p {
  color: var(--accent-color);
  font-weight: 600;
  margin: 0;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
  .page-hero {
    height: 50vh;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 80px;
  }

  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
  }

  .timeline-number {
    position: absolute;
    left: 0;
  }

  .timeline-content {
    padding: 0 0 0 2rem;
  }

  .values-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }
}

/* Products Page Styles */
.services-overview {
  padding: 6rem 0;
  background: var(--text-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--text-white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  text-align: center;
  border: 2px solid transparent;
}

.service-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.service-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--text-white);
}

.service-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 2rem 0;
}

/* Product Categories */
.product-categories {
  padding: 6rem 0;
  background: var(--bg-light);
}

.category-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--accent-color);
  background: transparent;
  color: var(--accent-color);
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent-color);
  color: var(--text-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--text-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 31, 43, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-actions {
  display: flex;
  gap: 1rem;
}

.action-btn {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border: none;
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn:hover {
  transform: scale(1.1);
  background: var(--text-white);
  color: var(--accent-color);
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.product-category {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
}

.product-rating span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Featured Collection Slider */
.featured-collection {
  padding: 6rem 0;
  background: var(--primary-color);
  color: var(--text-white);
}

.collection-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.slider-container {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.slide-image {
  flex: 1;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(26, 31, 43, 0.9);
}

.slide-content h3 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.slide-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.slide-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  transform: translateY(-50%);
}

.slider-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--accent-color);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--accent-color);
}

/* Design Process */
.design-process {
  padding: 6rem 0;
  background: var(--bg-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 auto 2rem;
}

.step-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Gallery Page Styles */
.gallery-filter-section {
  padding: 2rem 0;
  background: var(--text-white);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  grid-auto-rows: 300px;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.gallery-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 31, 43, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-content {
  text-align: center;
  color: var(--text-white);
}

.gallery-content h3 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.gallery-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.gallery-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.gallery-btn {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border: none;
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-btn:hover {
  transform: scale(1.1);
  background: var(--text-white);
  color: var(--accent-color);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.3s ease;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--accent-color);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  transform: translateY(-50%);
}

.lightbox-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-btn:hover {
  background: var(--accent-color);
}

/* Project Stats */
.project-stats {
  padding: 4rem 0;
  background: var(--primary-color);
  color: var(--text-white);
}

/* Contact Page Styles */
.contact-section {
  padding: 6rem 0;
  background: var(--text-white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.contact-details {
  margin: 3rem 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  flex-shrink: 0;
}

.contact-text h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-text p {
  color: var(--text-muted);
  margin: 0;
}

.contact-form-container {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  position: relative;
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--text-muted);
  transition: var(--transition);
  pointer-events: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 2px solid var(--text-muted);
  background: transparent;
  color: var(--text-dark);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--accent-color);
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  position: relative;
  top: 0;
  left: 0;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--text-muted);
  border-radius: 4px;
  position: relative;
  transition: var(--transition);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-white);
  font-size: 0.8rem;
}

.btn-loading {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

/* Map Section */
.map-section {
  padding: 0;
}

.map-container {
  height: 400px;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-content {
  text-align: center;
  color: var(--text-dark);
}

.map-content i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.map-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--text-white);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.faq-question {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question h3 {
  color: var(--primary-color);
  margin: 0;
}

.faq-question i {
  color: var(--accent-color);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 2rem 2rem;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Blog Page Styles */
.featured-article {
  padding: 4rem 0;
  background: var(--text-white);
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.featured-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent-color);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.featured-text {
  padding: 2rem 0;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.article-category {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.article-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.featured-text h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.featured-text p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--primary-color);
}

.author-title {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Blog Categories */
.blog-categories {
  padding: 2rem 0;
  background: var(--bg-light);
}

/* Blog Grid */
.blog-section {
  padding: 4rem 0;
  background: var(--text-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--text-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.blog-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.read-time {
  background: rgba(26, 31, 43, 0.8);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-category {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.blog-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.blog-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-author .author-avatar {
  width: 40px;
  height: 40px;
}

.blog-author .author-name {
  font-weight: 600;
  color: var(--primary-color);
}

.blog-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.blog-link:hover {
  color: var(--primary-color);
}

.load-more-container {
  text-align: center;
  margin-top: 3rem;
}

/* Newsletter Section */
.newsletter-section {
  padding: 4rem 0;
  background: var(--primary-color);
  color: var(--text-white);
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-text h2 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.newsletter-form .form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.newsletter-form button {
  padding: 1rem 2rem;
  white-space: nowrap;
}

.newsletter-disclaimer {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .featured-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }
}

/* About Page Specific Styles */
.story-section {
  padding: 6rem 0;
  background: var(--text-white);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.story-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.story-highlights {
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.highlight-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.story-visual {
  position: relative;
}

.story-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.story-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--gradient-accent);
  border-radius: 50%;
  opacity: 0.8;
  z-index: -1;
}

/* Values Section */
.values-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--text-white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(207, 174, 109, 0.1), transparent);
  transition: var(--transition);
}

.value-card:hover::before {
  left: 100%;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--text-white);
}

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 6rem 0;
  background: var(--text-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.team-member {
  text-align: center;
  background: var(--text-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.member-image {
  position: relative;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 31, 43, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.member-image:hover .member-overlay {
  opacity: 1;
}

.member-overlay .social-links {
  display: flex;
  gap: 1rem;
}

.member-overlay .social-links a {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: var(--transition);
  text-decoration: none;
}

.member-overlay .social-links a:hover {
  transform: scale(1.1);
  background: var(--text-white);
  color: var(--accent-color);
}

.member-info {
  padding: 2rem;
}

.member-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.member-bio {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Process Section */
.process-section {
  padding: 6rem 0;
  background: var(--primary-color);
  color: var(--text-white);
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-color);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: right;
}

.timeline-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-content {
  flex: 1;
  padding: 0 3rem;
}

.timeline-content h3 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Awards Section */
.awards-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.award-item {
  background: var(--text-white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.award-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.award-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--text-white);
}

.award-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.award-item p {
  color: var(--accent-color);
  font-weight: 600;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
  .page-hero {
    height: 50vh;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 80px;
  }

  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
  }

  .timeline-number {
    position: absolute;
    left: 0;
  }

  .timeline-content {
    padding: 0 0 0 2rem;
  }

  .values-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }
}

/* Products Page Styles */
.services-overview {
  padding: 6rem 0;
  background: var(--text-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--text-white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  text-align: center;
  border: 2px solid transparent;
}

.service-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.service-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--text-white);
}

.service-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 2rem 0;
}

/* Product Categories */
.product-categories {
  padding: 6rem 0;
  background: var(--bg-light);
}

.category-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--accent-color);
  background: transparent;
  color: var(--accent-color);
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent-color);
  color: var(--text-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--text-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 31, 43, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-actions {
  display: flex;
  gap: 1rem;
}

.action-btn {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border: none;
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn:hover {
  transform: scale(1.1);
  background: var(--text-white);
  color: var(--accent-color);
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.product-category {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
}

.product-rating span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Featured Collection Slider */
.featured-collection {
  padding: 6rem 0;
  background: var(--primary-color);
  color: var(--text-white);
}

.collection-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.slider-container {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.slide-image {
  flex: 1;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(26, 31, 43, 0.9);
}

.slide-content h3 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.slide-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.slide-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  transform: translateY(-50%);
  z-index: 10;
}

.slider-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--accent-color);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--accent-color);
}

/* Design Process */
.design-process {
  padding: 6rem 0;
  background: var(--bg-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 auto 2rem;
}

.step-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Gallery Page Styles */
.gallery-filter-section {
  padding: 2rem 0;
  background: var(--text-white);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  grid-auto-rows: 300px;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.gallery-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 31, 43, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-content {
  text-align: center;
  color: var(--text-white);
}

.gallery-content h3 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.gallery-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.gallery-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.gallery-btn {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border: none;
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-btn:hover {
  transform: scale(1.1);
  background: var(--text-white);
  color: var(--accent-color);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.3s ease;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-image img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 30px;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--accent-color);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  transform: translateY(-50%);
}

.lightbox-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-btn:hover {
  background: var(--accent-color);
}

/* Project Stats */
.project-stats {
  padding: 4rem 0;
  background: var(--primary-color);
  color: var(--text-white);
}

/* Contact Page Styles */
.contact-section {
  padding: 2rem 0;
  background: var(--text-white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.contact-details {
  margin: 3rem 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  flex-shrink: 0;
}

.contact-text h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-text p {
  color: var(--text-muted);
  margin: 0;
}

.contact-form-container {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  position: relative;
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--text-muted);
  transition: var(--transition);
  pointer-events: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 2px solid var(--text-muted);
  background: transparent;
  color: var(--text-dark);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--accent-color);
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  position: relative;
  top: 0;
  left: 0;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--text-muted);
  border-radius: 4px;
  position: relative;
  transition: var(--transition);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-white);
  font-size: 0.8rem;
}

.btn-loading {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

/* Map Section */
.map-section {
  padding: 0;
}

.map-container {
  height: 400px;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-content {
  text-align: center;
  color: var(--text-dark);
}

.map-content i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.map-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--text-white);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.faq-question {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question h3 {
  color: var(--primary-color);
  margin: 0;
}

.faq-question i {
  color: var(--accent-color);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 2rem 2rem;
  margin: 0;
  color: var(--text-dark);
  line-height: 30px;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Blog Page Styles */
.featured-article {
  padding: 4rem 0;
  background: var(--text-white);
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.featured-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent-color);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.featured-text {
  padding: 2rem 0;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.article-category {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.article-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.featured-text h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.featured-text p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--primary-color);
}

.author-title {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Blog Categories */
.blog-categories {
  padding: 2rem 0;
  background: var(--bg-light);
}

/* Blog Grid */
.blog-section {
  padding: 4rem 0;
  background: var(--text-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--text-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.blog-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.read-time {
  background: rgba(26, 31, 43, 0.8);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-category {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.blog-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.blog-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-author .author-avatar {
  width: 40px;
  height: 40px;
}

.blog-author .author-name {
  font-weight: 600;
  color: var(--primary-color);
}

.blog-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.blog-link:hover {
  color: var(--primary-color);
}

.load-more-container {
  text-align: center;
  margin-top: 3rem;
}

/* Newsletter Section */
.newsletter-section {
  padding: 4rem 0;
  background: var(--primary-color);
  color: var(--text-white);
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-text h2 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.newsletter-form .form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.newsletter-form button {
  padding: 1rem 2rem;
  white-space: nowrap;
}

.newsletter-disclaimer {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .featured-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }
}

/* About Page Specific Styles */
.story-section {
  padding: 8rem 0;
  background: var(--text-white);
  position: relative;
}

.story-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(207, 174, 109, 0.02) 0%, rgba(46, 139, 87, 0.02) 100%);
  pointer-events: none;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.story-text h2 {
  color: var(--primary-color);
  margin-bottom: 2.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
}

.story-text p {
  margin-bottom: 2rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.story-highlights {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-color);
  border-right: 4px solid var(--accent-color);
}



.highlight-item:last-child {
  margin-bottom: 0;
}

.highlight-item i {
  color: var(--accent-color);
  font-size: 1.4rem;
  width: 24px;
  text-align: center;
}

.story-visual {
  position: relative;
}

.story-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transform: rotate(2deg);
  transition: var(--transition);
}

.story-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.story-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
  display: block;
}

.image-decoration {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: var(--gradient-accent);
  border-radius: 50%;
  opacity: 0.8;
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

/* Values Section */
.values-section {
  padding: 8rem 0;
  background: var(--bg-light);
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.value-card {
  background: var(--text-white);
  padding: 4rem 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(207, 174, 109, 0.1);
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(207, 174, 109, 0.1), transparent);
  transition: var(--transition);
}

.value-card:hover::before {
  left: 100%;
}

.value-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--accent-color);
}

.value-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  font-size: 2.5rem;
  color: var(--text-white);
  position: relative;
  z-index: 2;
}

.value-icon::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--accent-color), var(--accent-secondary));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.value-card:hover .value-icon::before {
  opacity: 0.3;
}

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.value-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

/* Team Section */
.team-section {
  padding: 8rem 0;
  background: var(--text-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}

.team-member {
  text-align: center;
  background: var(--text-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 1px solid rgba(207, 174, 109, 0.1);
}

.team-member:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--accent-color);
}

.member-image {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 31, 43, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.member-image:hover .member-overlay {
  opacity: 1;
}

.member-overlay .social-links {
  display: flex;
  gap: 1.5rem;
}

.member-overlay .social-links a {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: var(--transition);
  text-decoration: none;
  font-size: 1.2rem;
}

.member-overlay .social-links a:hover {
  transform: scale(1.2);
  background: var(--text-white);
  color: var(--accent-color);
}

.member-info {
  padding: 3rem 2rem;
}

.member-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.member-role {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.member-bio {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

/* Process Section - Fixed */
.process-section {
  padding: 8rem 0;
  background: var(--primary-color);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(207, 174, 109, 0.1) 0%, rgba(46, 139, 87, 0.1) 100%);
  pointer-events: none;
}

.process-section .section-header {
  position: relative;
  z-index: 2;
}

.process-section .section-title {
  color: var(--text-white);
}

.process-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.process-timeline {
  max-width: 1000px;
  margin: 4rem auto 0;
  position: relative;
  z-index: 2;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent-color), var(--accent-secondary));
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 6rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: right;
}

.timeline-number {
  width: 100px;
  height: 100px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px var(--primary-color), 0 0 0 12px var(--accent-color);
  transition: var(--transition);
}

.timeline-item:hover .timeline-number {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px var(--primary-color), 0 0 0 16px var(--accent-color);
}

.timeline-content {
  flex: 1;
  padding: 0 4rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.timeline-content:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.timeline-content h3 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
  font-size: 1.1rem;
}

/* Awards Section */
.awards-section {
  padding: 8rem 0;
  background: var(--bg-light);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.award-item {
  background: var(--text-white);
  padding: 4rem 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 1px solid rgba(207, 174, 109, 0.1);
  position: relative;
  overflow: hidden;
}

.award-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(207, 174, 109, 0.1), transparent);
  transition: var(--transition);
}

.award-item:hover::before {
  left: 100%;
}

.award-item:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--accent-color);
}

.award-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  font-size: 2.5rem;
  color: var(--text-white);
  position: relative;
  z-index: 2;
}

.award-icon::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--accent-color), var(--accent-secondary));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.award-item:hover .award-icon::before {
  opacity: 0.3;
}

.award-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.award-item p {
  color: var(--accent-color);
  font-weight: 600;
  margin: 0;
  font-size: 1rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  line-height: 0.6;
  font-weight: 400;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
  .story-content {
    gap: 4rem;
  }

  .timeline-content {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: 60vh;
    min-height: 400px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-image {
    transform: none;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 80px;
  }

  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
  }

  .timeline-number {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    box-shadow: 0 0 0 6px var(--primary-color), 0 0 0 10px var(--accent-color);
  }

  .timeline-content {
    padding: 2rem;
    margin-left: 2rem;
  }

  .values-grid,
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .member-overlay .social-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .story-section,
  .values-section,
  .team-section,
  .process-section,
  .awards-section {
    padding: 5rem 0;
  }
}

@media (max-width: 480px) {
  .page-hero-content {
    padding: 0 1rem;
  }

  .timeline-content {
    padding: 1.5rem;
    margin-left: 1rem;
  }

  .timeline-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    box-shadow: 0 0 0 4px var(--primary-color), 0 0 0 8px var(--accent-color);
  }

  .value-card,
  .award-item {
    padding: 3rem 2rem;
  }

  .member-info {
    padding: 2rem 1.5rem;
  }

  .story-highlights {
    padding: 1.5rem;
  }

  .highlight-item {
    gap: 1rem;
  }
}

/* Additional styles for other pages will be added here */
@media only screen and (min-width: 320px) and (max-width: 768px) {
  .gallery-grid{
    display: flex !important;
    flex-direction: column !important;
  }
  .hero-visual{ display: none !important;}
}