/* About Page Styles for GOODLYF TREND - Luxury Fashion Brand */

/* Base Styles */
:root {
  --primary-color: #1a1a1a;
  --secondary-color: #d4af37; /* Gold */
  --accent-color: #9c7c38; /* Darker gold */
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #888888;
  --background-light: #f8f8f8;
  --background-dark: #0a0a0a;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Montserrat', sans-serif;
  --transition-standard: all 0.3s ease;
  --box-shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
  --box-shadow-medium: 0 8px 20px rgba(0, 0, 0, 0.1);
}

html, body {
  height: auto;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.about-page {
  margin: 0;
  padding: 0;
  font-family: var(--font-secondary);
  background-color: var(--background-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Brand Logo - Aligned with homepage */
.brand-logo {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
  margin-bottom: 10px;
}

.brand-logo h1 {
  font-family: var(--font-primary);
  color: var(--secondary-color);
  font-size: 2.2rem;
  letter-spacing: 3px;
  margin: 0 0 15px 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Navigation - UPDATED to remove black background */
.about-nav {
  background-color: rgba(255, 255, 255, 0.95);
  padding: var(--spacing-sm) 0;
  position: fixed;
  width: 100%;
  z-index: 5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition-standard);
  top: 70px;
  backdrop-filter: blur(10px);
}

.about-nav.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  top: 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.nav-links {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
}

.nav-links a {
  background-color: transparent;
  color: var(--primary-color);
  padding: 10px 20px;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-standard);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 70%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary-color);
}

/* Hero Section - Updated to use video background */
.about-hero {
  height: 80vh;
  background: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 4rem;
  margin-top: 70px;
  overflow: hidden;
}

#about-background-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
  z-index: 1;
}

.page-loaded .about-hero {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-content {
  max-width: 900px;
  padding: 0 var(--spacing-md);
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-family: var(--font-primary);
  font-size: 4.5rem;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
  letter-spacing: 5px;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}

.hero-divider {
  width: 150px;
  height: 2px;
  background-color: var(--secondary-color);
  margin: 0 auto var(--spacing-md);
}

.hero-content p {
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.hero-buttons .vision-button {
  margin: 0;
}

.download-btn {
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--primary-color);
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-standard);
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
}

.download-btn:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-medium);
}

/* Section Common Styles */
.about-section {
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.section-container.reverse {
  flex-direction: row-reverse;
}

.section-content {
  flex: 1;
  padding: var(--spacing-md);
}

.section-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-content h2 {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  position: relative;
}

.section-content h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  margin-top: var(--spacing-xs);
}

.section-content p {
  margin-bottom: var(--spacing-md);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.image-frame {
  width: 100%;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  box-shadow: var(--box-shadow-medium);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-frame:hover {
  transform: scale(1.02);
  box-shadow: var(--box-shadow-medium);
}

/* Animation for section elements */
.section-content, .section-image, .vision-content, .team-member {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-content.visible, .section-image.visible, .vision-content.visible, .team-member.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Story Section */
.story-section {
  background-color: var(--background-light);
  position: relative;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.story-image .image-frame {
  background: url('assets/img/4.jpg');
  background-size: cover;
  background-position: center;
}

/* Philosophy Section */
.philosophy-section {
  background-color: #f1f1f1;
  position: relative;
}

.philosophy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}

.philosophy-image .image-frame {
  background: url('assets/img/476626666_17895722967113094_8094307208288000565_n.jpg');
  background-size: cover;
  background-position: center;
}

.philosophy-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-md);
}

.philosophy-list li {
  margin-bottom: var(--spacing-sm);
  padding-left: 30px;
  position: relative;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.philosophy-list li:hover {
  transform: translateX(5px);
}

.philosophy-list li:before {
  content: '•';
  color: var(--secondary-color);
  font-size: 1.8rem;
  position: absolute;
  left: 0;
  top: -8px;
}

.philosophy-list li span {
  font-weight: 600;
  color: var(--primary-color);
}

.philosophy-quote {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary-color);
  border-left: 3px solid var(--secondary-color);
  padding-left: var(--spacing-md);
  margin-top: var(--spacing-lg);
  line-height: 1.7;
}

/* Craftsmanship Section */
.craftsmanship-section {
  background-color: var(--background-light);
  position: relative;
}

.craftsmanship-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.craftsmanship-image .image-frame {
  background: url('assets/img/476403954_17895490923113094_5866188846439584064_n.jpg');
  background-size: cover;
  background-position: center;
}

.craftsmanship-stats {
  display: flex;
  justify-content: space-between;
  margin-top: var(--spacing-lg);
  gap: 20px;
}

.stat {
  text-align: center;
  padding: var(--spacing-md);
  background-color: white;
  border-radius: 6px;
  box-shadow: var(--box-shadow-light);
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 3px solid var(--secondary-color);
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-medium);
}

.stat-number {
  display: block;
  font-family: var(--font-primary);
  font-size: 2.8rem;
  color: var (--secondary-color);
  margin-bottom: var(--spacing-xs);
  font-weight: 700;
}

.stat-text {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  color: var (--text-dark);
  font-weight: 500;
}

/* Vision Section */
.vision-section {
  height: 500px;
  background: url('assets/img/476513337_17895490929113094_8953878893336903454_n.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.vision-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  padding: 0 var(--spacing-md);
}

.vision-content h2 {
  font-family: var(--font-primary);
  font-size: 3.2rem;
  color: white;
  margin-bottom: var (--spacing-md);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.vision-content p {
  color: white;
  font-size: 1.3rem;
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.vision-button {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-standard);
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.vision-button:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* Team Section */
.team-section {
  background-color: var(--background-light);
  padding: var(--spacing-xl) 0;
  text-align: center;
  position: relative;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.team-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.team-header {
  margin-bottom: var(--spacing-lg);
}

.team-header h2 {
  font-family: var(--font-primary);
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.team-header h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: var(--spacing-xs) auto 0;
}

.team-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: var(--spacing-lg);
}

.team-member {
  flex: 0 0 calc(25% - 30px);
  min-width: 250px;
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--box-shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-medium);
}

.member-image {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
}

.member-info {
  padding: var(--spacing-md);
}

.member-name {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.member-title {
  color: var(--secondary-color);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-sm);
}

.member-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Enhanced Team Section Styling */
.team-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--background-light);
  position: relative;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.team-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.team-title {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

.team-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto var(--spacing-md);
}

.section-divider {
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 0 auto;
}

/* Team Slider Container */
.team-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-md) 0;
  position: relative;
}

/* Team Slider */
.team-slider {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0 auto;
  padding: 20px 0;
  transition: transform 0.5s ease;
}

/* Team Slides */
.team-slide {
  flex: 0 0 320px;
  perspective: 1000px;
  border-radius: 12px;
  overflow: visible;
  position: relative;
}

.team-slide-inner {
  position: relative;
  width: 100%;
  height: 500px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 12px;
  box-shadow: var(--box-shadow-light);
}

.team-slide:hover .team-slide-inner {
  transform: rotateY(180deg);
}

.slide-front, .slide-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}

.slide-front {
  background-color: white;
}

.slide-back {
  background-color: var(--primary-color);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: var(--spacing-md);
}

/* Profile Image Container */
.profile-img-container {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.member-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  transition: transform 0.5s ease;
}

.team-slide:hover .member-image {
  transform: scale(1.05);
}

.member-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: white;
  padding: 8px 16px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Member Info */
.member-info {
  padding: var(--spacing-sm) var(--spacing-md);
  text-align: center;
}

.member-info h3 {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  margin: 0 0 5px;
  color: var(--primary-color);
}

.member-info .member-title {
  color: var(--secondary-color);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin: 0;
}

/* Member Bio */
.member-bio {
  text-align: center;
  width: 100%;
}

.member-bio h3 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  margin: 0 0 5px;
  color: white;
}

.member-bio .member-title {
  color: var(--secondary-color);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

.member-quote {
  font-family: var(--font-primary);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin: var(--spacing-md) auto;
  position: relative;
  padding: 0 20px;
}

.member-quote::before,
.member-quote::after {
  content: '"';
  font-family: Georgia, serif;
  position: absolute;
  font-size: 1.5rem;
  color: rgba(212, 175, 55, 0.5);
}

.member-quote::before {
  left: 0;
  top: -5px;
}

.member-quote::after {
  content: '"';
  right: 0;
  bottom: 0;
}

.bio-details {
  margin: var(--spacing-md) 0;
}

.bio-details p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: var(--spacing-md);
}

.member-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.member-social a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Slider Navigation */
.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--spacing-lg);
}

.prev-slide,
.next-slide {
  background-color: white;
  color: var(--primary-color);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow-light);
  font-size: 0.9rem;
}

.prev-slide:hover,
.next-slide:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-medium);
}

.slider-dots {
  display: flex;
  gap: 10px;
  margin: 0 24px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e0e0e0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--secondary-color);
  transform: scale(1.2);
}

/* Team Animation */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-slide {
  opacity: 0;
  animation: fadeSlideIn 0.8s ease forwards;
}

.team-slide:nth-child(1) {
  animation-delay: 0.2s;
}

.team-slide:nth-child(2) {
  animation-delay: 0.4s;
}

.team-slide:nth-child(3) {
  animation-delay: 0.6s;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .team-slider {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .team-slide {
    flex: 0 0 280px;
    margin-bottom: var(--spacing-md);
  }
  
  .team-slide-inner {
    height: 460px;
  }
  
  .profile-img-container {
    height: 340px;
  }
}

@media (max-width: 768px) {
  .team-title {
    font-size: 2.2rem;
  }
  
  .team-subtitle {
    font-size: 1.1rem;
  }
  
  .team-slide {
    flex: 0 0 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .profile-img-container {
    height: 300px;
  }
  
  .team-slide-inner {
    height: 420px;
  }
  
  .member-info h3 {
    font-size: 1.4rem;
  }
  
  .slider-nav {
    flex-wrap: wrap;
    gap: 15px;
  }
}

/* Testimonials Section */
.testimonials-section {
  background-color: #f1f1f1;
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.testimonials-header {
  margin-bottom: var(--spacing-lg);
}

.testimonials-header h2 {
  font-family: var(--font-primary);
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.testimonials-header h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: var(--spacing-xs) auto 0;
}

.testimonials-slider {
  margin-top: var(--spacing-lg);
  position: relative;
}

.testimonial {
  background-color: white;
  padding: var(--spacing-lg);
  border-radius: 6px;
  box-shadow: var(--box-shadow-light);
  margin: 0 15px;
  text-align: left;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 8rem;
  color: rgba(212, 175, 55, 0.2);
  position: absolute;
  top: -20px;
  left: 20px;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: var(--spacing-sm);
  background-size: cover;
  background-position: center;
}

.author-info h4 {
  font-family: var(--font-primary);
  color: var(--primary-color);
  margin: 0 0 5px;
  font-size: 1.1rem;
}

.author-info p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
  background-color: var(--background-light);
  padding: var(--spacing-xl) 0;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-lg);
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  position: relative;
}

.contact-info h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  margin-top: var(--spacing-xs);
}

.contact-info p {
  margin-bottom: var(--spacing-md);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-top: var(--spacing-lg);
}

.contact-details li {
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--spacing-sm);
  color: white;
  font-size: 1.2rem;
}

.contact-text {
  color: var(--text-dark);
}

.contact-text span {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-form {
  flex: 1;
  background-color: white;
  padding: var(--spacing-lg);
  border-radius: 6px;
  box-shadow: var(--box-shadow-medium);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-standard);
  cursor: pointer;
  border-radius: 4px;
  width: 100%;
}

.form-submit:hover {
  background-color: var(--accent-color);
}

/* Footer */
footer {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: var(--spacing-lg) 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-brand {
  flex: 1;
  min-width: 300px;
  margin-bottom: var(--spacing-md);
}

.footer-brand h3 {
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: var(--spacing-sm);
}

.footer-brand p {
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-links {
  flex: 0 0 200px;
  margin-bottom: var(--spacing-md);
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
  position: relative;
}

.footer-links h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 2px;
  width: 30px;
  background-color: var(--secondary-color);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-links ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-standard);
}

.footer-links ul li a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.footer-newsletter {
  flex: 1;
  min-width: 300px;
  margin-bottom: var(--spacing-md);
}

.footer-newsletter h4 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
  position: relative;
}

.footer-newsletter h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 2px;
  width: 30px;
  background-color: var(--secondary-color);
}

.newsletter-form {
  display: flex;
  margin-top: var(--spacing-md);
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  background-color: rgba(255,255,255,0.1);
  color: var(--text-light);
  border-radius: 4px 0 0 4px;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-input:focus {
  outline: none;
  background-color: rgba(255,255,255,0.15);
}

.newsletter-button {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: var(--transition-standard);
}

.newsletter-button:hover {
  background-color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--spacing-md);
  margin-top: var(--spacing-md);
  text-align: center;
  width: 100%;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: var(--spacing-md);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-standard);
}

.social-icon:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Improved Footer Styling */
.about-footer {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 0;
  font-family: var(--font-secondary);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-md);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--spacing-lg);
}

/* Logo Section */
.footer-logo-section {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  margin-right: var(--spacing-md);
}

.footer-logo-image {
  height: 70px;
  width: auto;
  margin-bottom: var(--spacing-sm);
}

.footer-logo-text h2 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin: 0;
  margin-bottom: 5px;
}

.footer-logo-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.footer-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: var(--spacing-md);
  margin-bottom: 0;
  padding-right: var(--spacing-sm);
}

/* Columns Container */
.footer-columns-container {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--spacing-lg);
}

/* Column Styling */
.footer-column {
  flex: 1;
  min-width: 180px;
}

.footer-column h3 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
  position: relative;
  font-weight: 500;
  letter-spacing: 1px;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: var(--spacing-xs);
}

.footer-links-list li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-standard);
  display: inline-block;
  position: relative;
  padding: 3px 0;
}

.footer-links-list li a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

/* Newsletter Column */
.newsletter-column {
  flex: 1.2;
  min-width: 280px;
}

.newsletter-heading {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: var(--spacing-sm);
}

.input-group {
  display: flex;
  margin-bottom: var(--spacing-md);
}

.input-group input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  border-radius: 4px 0 0 4px;
  transition: background-color 0.3s ease;
}

.input-group input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.12);
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 0 20px;
  font-size: 0.9rem;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  font-family: var(--font-secondary);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  background-color: var(--accent-color);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: var(--spacing-md);
  flex-wrap: wrap;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--secondary-color);
  color: var(--background-dark);
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: var(--spacing-sm) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.copyright p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--secondary-color);
}

.separator {
  color: var(--text-muted);
  margin: 0 8px;
  opacity: 0.5;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .footer-content {
    flex-direction: column;
  }
  
  .footer-logo-section {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: var(--spacing-md);
  }
  
  .footer-description {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .footer-columns-container {
    gap: var(--spacing-md);
  }

  .footer-column {
    flex: 1 0 40%;
    min-width: 0;
  }
  
  .newsletter-column {
    flex: 1 0 100%;
  }
}

@media (max-width: 480px) {
  .footer-column {
    flex: 1 0 100%;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-xs);
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
  
  .input-group {
    flex-direction: column;
  }
  
  .input-group input {
    border-radius: 4px;
    margin-bottom: 10px;
  }
  
  .submit-btn {
    width: 100%;
    border-radius: 4px;
    padding: 12px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section-container {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .section-container.reverse {
    flex-direction: column;
  }
  
  .section-content, .section-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .image-frame {
    height: 400px;
  }
  
  .craftsmanship-stats {
    flex-wrap: wrap;
  }
  
  .stat {
    flex: 0 0 calc(50% - 10px);
    margin-bottom: 20px;
  }
  
  .team-member {
    flex: 0 0 calc(50% - 15px);
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .contact-info, .contact-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .section-content h2 {
    font-size: 2.2rem;
  }
  
  .section-content p {
    font-size: 1rem;
  }
  
  .nav-links {
    gap: 10px;
  }
  
  .nav-links a {
    padding: 8px 12px;
    margin: 0 5px;
    font-size: 0.9rem;
  }
  
  .vision-content h2 {
    font-size: 2.5rem;
  }
  
  .vision-content p {
    font-size: 1.1rem;
  }
  
  .team-member {
    flex: 0 0 100%;
  }
  
  .stat {
    flex: 0 0 100%;
  }
  
  .footer-container {
    flex-direction: column;
  }
  
  .footer-brand, .footer-links, .footer-newsletter {
    width: 100%;
    margin-bottom: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .download-btn, .vision-button {
    width: 100%;
  }
  
  .section-content h2 {
    font-size: 2rem;
  }
  
  .image-frame {
    height: 300px;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-links a {
    font-size: 0.85rem;
  }
  
  .vision-content h2 {
    font-size: 2.2rem;
  }
  
  .team-header h2, .testimonials-header h2 {
    font-size: 2.2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-input {
    border-radius: 4px;
    margin-bottom: 10px;
  }
  
  .newsletter-button {
    border-radius: 4px;
    width: 100%;
    padding: 12px;
  }
}

/* Animation Keyframes */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animations */
.animate-left {
  animation: slideInLeft 0.8s ease forwards;
}

.animate-right {
  animation: slideInRight 0.8s ease forwards;
}

.animate-up {
  animation: slideInUp 0.8s ease forwards;
}

/* Additional utility classes */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--secondary-color);
}

.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background-color: rgba(212, 175, 55, 0.2);
  z-index: -1;
}

/* Preloader for images */
.preload-images {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Adding missing animation classes referenced in JavaScript */
.shake {
  animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@keyframes ripple {
  to { transform: scale(2); opacity: 0; }
}

/* Modal animations fixed */
.modal {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.preparing {
  opacity: 0;
  display: flex;
}

.modal.show {
  opacity: 1;
}

.modal-content {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.modal-content.show-content {
  transform: translateY(0);
  opacity: 1;
}

/* Add scroll-top button styling */
.scroll-top-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.scroll-top-button.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-button:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Fix body overflow when modal is open */
.modal-open {
  overflow: hidden;
}

/* Fix header styling when scrolled */
.header-scrolled {
  background-color: rgba(255,255,255,0.98) !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
}

/* Fix stat animations */
.highlight-stat {
  animation: highlight 0.5s ease;
}

.counted {
  animation: pulse 0.5s ease;
}

@keyframes highlight {
  0% { color: var(--text-dark); }
  50% { color: var(--secondary-color); }
  100% { color: var(--secondary-color); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Fix Video Controls */
#about-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Mute button styling */
.mute-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mute-button:hover {
  background-color: var(--secondary-color);
}

/* Fix team section styling */
.team-title {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.team-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.team-members {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  flex: 0 0 300px;
  text-align: center;
  margin-bottom: 30px;
}

.member-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
}

.team-member h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.team-member p {
  color: var(--secondary-color);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Fix section container for full-width */
.section-container.full-width {
  flex-direction: column;
}

/* Add video play button for browsers that block autoplay */
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background-color: rgba(212, 175, 55, 0.8);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-play-button:hover {
  background-color: rgba(212, 175, 55, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Fix modal styling */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 20px 10px;
}

.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  position: relative;
  margin: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.close-modal:hover {
  color: var(--secondary-color);
  transform: rotate(90deg);
}

.modal h2 {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.modal-divider {
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 15px 0 25px;
}

.modal p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.pdf-modal-content {
  max-width: 90%;
  height: 90vh;
  padding: 30px;
}

/* Mobile responsive modal adjustments */
@media (max-width: 768px) {
  .modal {
    align-items: flex-start;
    padding: 60px 10px 20px;
  }
  
  .modal-content {
    padding: 30px 20px;
    width: 95%;
    max-height: 80vh;
    overflow-y: auto;
  }
  
  .pdf-modal-content {
    height: auto;
    max-height: 85vh;
  }
  
  .modal h2 {
    font-size: 1.8rem;
  }
  
  .modal p {
    font-size: 1rem;
  }
  
  .close-modal {
    top: 10px;
    right: 10px;
    background-color: rgba(255,255,255,0.9);
    border-radius: 50%;
  }
}

/* Instagram Feed Section Styling */
.instagram-feed-section {
  background-color: #f9f9f9;
  padding: var(--spacing-xl) 0;
  position: relative;
}

.instagram-feed-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.instagram-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.instagram-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.instagram-header h2 {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.instagram-header h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: var(--spacing-xs) auto 0;
}

.instagram-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.instagram-link {
  color: var(--secondary-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.instagram-link:hover {
  border-bottom: 1px solid var(--secondary-color);
}

/* Elfsight widget container customization */
.elfsight-app-b6260b53-b418-46e8-a687-030ab79c484a {
  margin: var(--spacing-md) 0;
  max-width: 100%;
  overflow: hidden;
}

/* Responsive adjustments for Instagram feed */
@media (max-width: 768px) {
  .instagram-header h2 {
    font-size: 2.2rem;
  }
  
  .instagram-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .instagram-header h2 {
    font-size: 1.8rem;
  }
  
  .instagram-subtitle {
    font-size: 1rem;
  }
}

/* Stylish Section Breaks */
.section-break {
  position: relative;
  height: 120px;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.section-break::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    rgba(212, 175, 55, 0), 
    rgba(212, 175, 55, 0.3) 20%, 
    rgba(212, 175, 55, 0.5) 50%, 
    rgba(212, 175, 55, 0.3) 80%, 
    rgba(212, 175, 55, 0));
  z-index: -1;
}

.break-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-light);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
  z-index: 2;
}

.break-symbol::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
}

.break-symbol::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
}

.break-symbol i {
  color: var(--secondary-color);
  font-size: 1.8rem;
  z-index: 3;
}

/* Alternative Section Break Styles */
.section-break.diagonal {
  height: 180px;
  clip-path: polygon(0 0, 100% 70px, 100% 100%, 0 calc(100% - 70px));
  margin-top: -70px;
  margin-bottom: -70px;
  background-color: var(--background-light);
  background-image: linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
}

.section-break.wave {
  height: 150px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23d4af37'%3E%3C/path%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23d4af37'%3E%3C/path%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23d4af37' opacity='.1'%3E%3C/path%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -50px;
  margin-bottom: -50px;
  z-index: 0;
}

.section-break.geometric {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geometric-pattern {
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geometric-pattern::before,
.geometric-pattern::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background-color: var(--secondary-color);
  opacity: 0.5;
}

.geometric-pattern::before {
  left: calc(50% - 100px);
}

.geometric-pattern::after {
  right: calc(50% - 100px);
}

.geometric-pattern .diamond {
  width: 20px;
  height: 20px;
  background-color: var(--background-light);
  border: 1px solid var(--secondary-color);
  transform: rotate(45deg);
}

/* Dark theme adjustments */
@media (prefers-color-scheme: dark) {
  .break-symbol {
    background-color: var(--background-dark);
  }
  
  .section-break.diagonal {
    background-color: var(--section-bg);
  }
}

@media (max-width: 768px) {
  .section-break {
    height: 100px;
  }
  
  .section-break.diagonal {
    height: 150px;
  }
}

@media (max-width: 576px) {
  .section-break {
    height: 80px;
  }
  
  .break-symbol {
    width: 60px;
    height: 60px;
  }
  
  .break-symbol::before {
    width: 48px;
    height: 48px;
  }
  
  .break-symbol::after {
    width: 36px;
    height: 36px;
  }
  
  .break-symbol i {
    font-size: 1.4rem;
  }
}

/* Professional Section Breaks */

/* Base section break styles */
.section-break {
  position: relative;
  height: 120px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 5;
}

/* Luxury Divider with Logo Emblem */
.section-break.luxury {
  height: 160px;
}

.luxury-divider {
  display: flex;
  align-items: center;
  width: 80%;
  max-width: 1000px;
}

.divider-line {
  height: 1px;
  flex-grow: 1;
  background: linear-gradient(90deg, 
    rgba(212, 175, 55, 0.1), 
    rgba(212, 175, 55, 0.6) 50%, 
    rgba(212, 175, 55, 0.1));
}

.emblem {
  margin: 0 30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.8), rgba(212, 175, 55, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.emblem::before {
  content: '';
  position: absolute;
  top: -7px;
  left: -7px;
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.emblem-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Golden Wave Divider */
.section-break.golden-wave {
  height: 150px;
  position: relative;
  overflow: hidden;
  background-image: url('assets/img/485614630_17901224916113094_3610639122771735529_n.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* This creates the parallax effect */
}

.section-break.golden-wave::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.wave-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.wave {
  position: absolute;
  width: 100%;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='rgba(212, 175, 55, 0.15)'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
}

.wave1 {
  top: 0;
  animation: waveAnimation 15s linear infinite alternate;
}

.wave2 {
  top: 30px;
  opacity: 0.5;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='rgba(212, 175, 55, 0.1)'%3E%3C/path%3E");
  animation: waveAnimation 20s linear infinite;
}

@keyframes waveAnimation {
  0% { background-position-x: 0; }
  100% { background-position-x: 1000px; }
}

/* Signature Divider */
.section-break.signature {
  height: 120px;
}

.signature-line {
  position: relative;
  width: 80%;
  max-width: 1000px;
  height: 1px;
  background: linear-gradient(90deg, 
    rgba(212, 175, 55, 0), 
    rgba(212, 175, 55, 0.5) 50%, 
    rgba(212, 175, 55, 0));
  display: flex;
  align-items: center;
  justify-content: center;
}

.signature-text {
  background-color: var(--background-light);
  padding: 0 30px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--secondary-color);
  letter-spacing: 3px;
}

/* Diamond Pattern Divider */
.section-break.diamond-pattern {
  height: 150px;
}

.diamond-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.diamond {
  width: 20px;
  height: 20px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.8), rgba(212, 175, 55, 0.6));
  transform: rotate(45deg);
}

.diamond-sm {
  width: 10px;
  height: 10px;
  background: rgba(212, 175, 55, 0.4);
  transform: rotate(45deg);
}

/* Thread Divider */
.section-break.thread {
  height: 100px;
}

.thread-line {
  position: relative;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(90deg, 
    rgba(212, 175, 55, 0.8), 
    rgba(212, 175, 55, 0.8) 8px, 
    transparent 8px, 
    transparent 16px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thread-line i {
  background-color: var(--background-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Dark mode adjustments for all dividers */
@media (prefers-color-scheme: dark) {
  .signature-text,
  .thread-line i {
    background-color: var(--background-dark);
  }
  
  .luxury-divider .divider-line,
  .signature-line,
  .thread-line {
    background-color: rgba(212, 175, 55, 0.15);
  }
  
  .thread-line {
    background: repeating-linear-gradient(90deg, 
      rgba(212, 175, 55, 0.5), 
      rgba(212, 175, 55, 0.5) 8px, 
      transparent 8px, 
      transparent 16px);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-break {
    height: 100px;
  }
  
  .section-break.luxury {
    height: 130px;
  }
  
  .section-break.golden-wave {
    height: 120px;
  }
  
  .emblem {
    width: 60px;
    height: 60px;
    margin: 0 20px;
  }
  
  .signature-text {
    font-size: 1.4rem;
    padding: 0 20px;
  }
  
  .divider-line,
  .signature-line {
    width: 70%;
  }
  
  .diamond-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .section-break {
    height: 80px;
  }
  
  .emblem {
    width: 50px;
    height: 50px;
    margin: 0 15px;
  }
  
  .signature-text {
    font-size: 1.2rem;
    padding: 0 15px;
  }
  
  .diamond-container {
    gap: 15px;
  }
  
  .diamond {
    width: 15px;
    height: 15px;
  }
  
  .diamond-sm {
    width: 8px;
    height: 8px;
  }
}