/* DineWho - Modern Website Styling */
:root {
  --primary-color: #ff5a5f;
  --secondary-color: #00a699;
  --dark-color: #484848;
  --light-color: #f8f8f8;
  --white: #ffffff;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --gradient-primary: linear-gradient(135deg, #ff5a5f 0%, #ff3a5f 100%);
  --gradient-dark: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 7px;
}

body::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #f0f0f0;
}

body::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background: #dfdbdb;
}

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

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

ul {
  list-style: none;
}

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  padding: 15px 0;
  transition: var(--transition);
}

.header.scrolled {
  padding: 10px 0;
}

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

.logo {
  font-size: 28px;
  font-weight: 700;
}

.logo img {
  height: 40px;
}

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

.nav-list {
  display: flex;
  margin-right: 20px;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  font-weight: 500;
  font-size: 16px;
  padding: 5px 0;
  position: relative;
}

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

.nav-link:hover::after {
  width: 100%;
}

.auth-buttons {
  display: flex;
  align-items: center;
  background-color: var(--light-color);
  border-radius: 50px;
  padding: 5px;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

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

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

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--dark-color);
  border: 2px solid transparent;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-hero-secondary {
  padding: 12px 28px;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-hero-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 90, 95, 0.1), rgba(0, 166, 153, 0.1));
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.btn-hero-secondary:hover {
  transform: translateY(-3px);
}

.btn-hero-secondary:hover::before {
  opacity: 1;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

/* Hero Section */
.hero {
  padding: 180px 0 120px;
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 90, 95, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--primary-color);
  opacity: 0.3;
  border-radius: 3px;
}

.hero-title .text-gradient {
  background: linear-gradient(to right, var(--primary-color), #ff9a8b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.text-primary {
  color: var(--primary-color);
}

.countdown-wrapper {
  margin: 40px 0 30px;
  position: relative;
}

.countdown-intro {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 15px;
  font-weight: 300;
}

.countdown {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 15px;
  position: relative;
}

.countdown-item:not(:last-child)::after {
  content: ':';
  position: absolute;
  right: -18px;
  top: 20px;
  font-size: 36px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.countdown-number {
  display: flex;
}

.countdown-digit {
  width: 60px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  margin: 0 2px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-digit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.countdown-label {
  font-size: 14px;
  margin-top: 12px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
}

.hero-description {
  margin: 25px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-description p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.available-cities {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
}

.cities-label {
  font-size: 16px;
  margin-bottom: 15px;
  display: inline-block;
}

.city-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.city-badge {
  display: inline-block;
  padding: 8px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.city-badge:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.btn-with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-with-icon i {
  font-size: 18px;
}

.pulse {
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(255, 90, 95, 0.7);
}

@keyframes pulse {
  0% {
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(255, 90, 95, 0.7);
  }
  
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 90, 95, 0);
  }
  
  100% {
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(255, 90, 95, 0);
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: var(--transition);
}

.hero-scroll-indicator span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.hero-scroll-indicator i {
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Animation Classes */
.animate-fade-down {
  animation: fadeInDown 1s both;
}

.animate-fade-up {
  animation: fadeInUp 1s both;
}

.animate-fade-up:nth-child(2) {
  animation-delay: 0.2s;
}

.animate-fade-up:nth-child(3) {
  animation-delay: 0.4s;
}

.animate-fade-up:nth-child(4) {
  animation-delay: 0.6s;
}

.animate-fade-up:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Features Section */
.features {
  padding: 120px 0;
  text-align: center;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(0, 166, 153, 0.03) 0%, transparent 70%),
              radial-gradient(circle at 10% 90%, rgba(255, 90, 95, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
}

.section-badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: rgba(255, 90, 95, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
  position: relative;
  line-height: 1.2;
}

.section-title .text-gradient {
  background: linear-gradient(to right, var(--primary-color), #ff9a8b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0;
}

.divider-line {
  width: 60px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.1);
}

.divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-color);
  margin: 0 5px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.feature-card-modern {
  max-width: 900px;
  margin: 60px auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  background-color: var(--white);
  transition: var(--transition);
  transform: translateY(0);
}

.feature-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.feature-card-inner {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .feature-card-inner {
    flex-direction: row;
  }
}

.feature-image-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-card-modern:hover .feature-image {
  transform: scale(1.05);
}

.feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card-modern:hover .feature-overlay {
  opacity: 1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 36px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.feature-card-modern:hover .feature-icon {
  transform: translateY(0);
  opacity: 1;
}

.feature-content {
  flex: 1;
  padding: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.feature-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

.feature-tagline {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.02);
  border-left: 3px solid var(--primary-color);
  border-radius: 0 8px 8px 0;
}

.feature-tagline i {
  font-size: 24px;
  color: var(--primary-color);
  opacity: 0.5;
  margin-right: 15px;
  margin-top: 5px;
}

.feature-tagline p {
  font-size: 16px;
  font-style: italic;
  color: #666;
  font-weight: 500;
}

.feature-card-modern .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* How It Works */
.how-it-works {
  padding: 120px 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(0, 166, 153, 0.05) 0%, transparent 70%),
              radial-gradient(circle at 10% 90%, rgba(255, 90, 95, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.steps-modern {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 60px 0;
}

.step-card {
  flex: 1 1 calc(50% - 30px);
  max-width: 500px;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  display: flex;
  align-items: flex-start;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: var(--gradient-primary);
  transition: height 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-card:hover::before {
  height: 100%;
}

.step-icon-wrapper {
  position: relative;
  margin-right: 25px;
}

.step-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background-color: rgba(255, 90, 95, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 28px;
  transition: var(--transition);
}

.step-card:hover .step-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: rotate(5deg);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(255, 90, 95, 0.3);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
  transition: var(--transition);
}

.step-card:hover .step-title {
  color: var(--primary-color);
}

.step-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.experience-card {
  max-width: 900px;
  margin: 60px auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .experience-card {
    flex-direction: row;
    height: 320px;
  }
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.experience-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.experience-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.experience-card:hover .experience-overlay {
  opacity: 1;
}

.experience-tagline {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  padding: 8px 16px;
  background-color: rgba(255, 90, 95, 0.8);
  border-radius: 50px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.experience-card:hover .experience-tagline {
  transform: translateY(0);
  opacity: 1;
}

.experience-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-quote {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.experience-quote i {
  font-size: 30px;
  color: var(--primary-color);
  opacity: 0.3;
  margin-right: 15px;
  margin-top: 5px;
}

.experience-quote p {
  font-size: 24px;
  font-style: italic;
  color: var(--dark-color);
  font-weight: 500;
  line-height: 1.5;
}

.experience-content .btn {
  align-self: flex-start;
}

@media (max-width: 991px) {
  .step-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 767px) {
  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .step-title {
    font-size: 20px;
  }
  
  .experience-quote p {
    font-size: 20px;
  }
}

/* Testimonials */
.testimonials {
  padding: 120px 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(0, 166, 153, 0.03) 0%, transparent 70%),
              radial-gradient(circle at 10% 90%, rgba(255, 90, 95, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card-inner {
  background-color: var(--white);
  padding: 40px 30px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: var(--primary-color);
  opacity: 0.2;
}

.testimonial-content {
  margin-top: 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.testimonial-content p:last-child {
  margin-bottom: 0;
}

.testimonial-author {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.rating {
  color: #FFD700;
  font-size: 14px;
}

@media (max-width: 767px) {
  .testimonials-modern {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.faq {
  padding: 120px 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(0, 166, 153, 0.03) 0%, transparent 70%),
              radial-gradient(circle at 10% 90%, rgba(255, 90, 95, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.faq-tabs {
  margin-top: 60px;
}

.faq-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.faq-tab-button {
  padding: 12px 25px;
  background-color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-color);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.faq-tab-button:hover, .faq-tab-button.active {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

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

.faq-tab-pane {
  display: none;
}

.faq-tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-modern-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item-modern {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.faq-item-modern:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  position: relative;
}

.faq-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background-color: rgba(255, 90, 95, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 12px;
  transition: var(--transition);
}

.faq-item-modern.active .faq-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  flex: 1;
  transition: var(--transition);
}

.faq-item-modern.active .faq-question h3 {
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px 0 70px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item-modern.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 20px 70px;
}

.faq-answer p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-tabs-nav {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-tab-button {
    width: 100%;
    max-width: 300px;
  }
  
  .faq-question {
    padding: 15px 20px;
  }
  
  .faq-question h3 {
    font-size: 16px;
  }
  
  .faq-answer {
    padding: 0 20px 0 65px;
  }
  
  .faq-item-modern.active .faq-answer {
    padding: 0 20px 15px 65px;
  }
}

/* Call to Action */
.cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Modern Call to Action */
.modern-cta {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(135deg, #f8f8f8 0%, #f2f2f2 100%);
  overflow: hidden;
}

.modern-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.cta-content {
  flex: 1;
  max-width: 580px;
  padding-right: 40px;
}

.cta-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.1) 0%, rgba(255, 90, 95, 0.2) 100%);
  color: var(--primary-color);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(255, 90, 95, 0.15);
  border: 1px solid rgba(255, 90, 95, 0.1);
  animation: pulseLight 3s infinite;
}

@keyframes pulseLight {
  0%, 100% {
    box-shadow: 0 5px 15px rgba(255, 90, 95, 0.15);
  }
  50% {
    box-shadow: 0 5px 25px rgba(255, 90, 95, 0.3);
  }
}

.cta-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--dark-color);
}

.highlight-text {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: rgba(255, 90, 95, 0.2);
  z-index: -1;
  border-radius: 10px;
}

.cta-description {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-main-button {
  display: inline-block;
  position: relative;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 50px;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 90, 95, 0.3);
  max-width: 300px;
}

.btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: 0.5s;
  opacity: 0;
}

.cta-main-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 90, 95, 0.4);
  color: var(--white);
}

.cta-main-button:hover .btn-shine {
  left: 100%;
  opacity: 1;
  transition: 1s ease;
}

.cta-info {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 15px;
}

.info-item i {
  color: var(--primary-color);
  font-size: 16px;
}

.cta-image {
  flex: 1;
  max-width: 480px;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.main-image {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.image-badge {
  position: absolute;
  bottom: 30px;
  left: 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: floatBadge 4s infinite alternate ease-in-out;
}

@keyframes floatBadge {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--dark-color);
}

.badge-subtitle {
  font-size: 13px;
  color: #777;
}

/* Responsive Design for Modern CTA */
@media (max-width: 992px) {
  .modern-cta-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .cta-content {
    max-width: 100%;
    padding-right: 0;
    text-align: center;
  }
  
  .cta-info {
    justify-content: center;
  }
  
  .cta-main-button {
    margin: 0 auto;
  }
  
  .cta-image {
    max-width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .modern-cta {
    padding: 80px 0;
  }
  
  .cta-title {
    font-size: 36px;
  }
  
  .cta-description {
    font-size: 16px;
  }
  
  .cta-info {
    flex-direction: column;
    gap: 10px;
  }
  
  .image-badge {
    left: 50%;
    transform: translateX(-50%);
    animation: floatBadgeMobile 4s infinite alternate ease-in-out;
  }
  
  @keyframes floatBadgeMobile {
    0% {
      transform: translateX(-50%) translateY(0);
    }
    100% {
      transform: translateX(-50%) translateY(-10px);
    }
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 28px;
  }
  
  .cta-main-button {
    padding: 15px 25px;
    font-size: 16px;
  }
  
  .main-image {
    max-height: 300px;
  }
}

/* Footer */
.footer {
  background-color: #222;
  color: #ccc;
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
}

.footer-waves svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 40px;
}

.footer-brand {
  flex: 1 1 300px;
  max-width: 350px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-size: 15px;
  line-height: 1.6;
  color: #aaa;
  margin-bottom: 25px;
}

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

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
  color: #fff;
  border-color: var(--primary-color);
}

.footer-links-section {
  flex: 1 1 600px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-links-wrapper {
  display: flex;
  flex: 1 1 300px;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links-group {
  flex: 1 1 170px;
}

.footer-title {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  font-weight: 600;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #aaa;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  display: inline-block;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #aaa;
  font-size: 14px;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 16px;
  min-width: 16px;
}

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  margin-top: 15px;
  width: fit-content;
}

.btn-outline-light:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 13px;
}

.mt-3 {
  margin-top: 15px;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-selector select {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-selector select:hover,
.language-selector select:focus {
  border-color: var(--primary-color);
}

.footer-credit {
  font-size: 14px;
  color: #777;
  margin: 0;
}

/* Responsive Footer */
@media (max-width: 991px) {
  .footer-container {
    flex-direction: column;
  }
  
  .footer-brand {
    max-width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 60px 0 20px;
  }
  
  .footer-links-section {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links-wrapper {
    gap: 40px;
  }
  
  .footer-links-group {
    flex-basis: 100%;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-meta {
    flex-direction: column;
  }
}

/* Enhanced Mobile Responsiveness for Footer */
@media (max-width: 576px) {
  .footer {
    padding: 50px 0 20px;
  }
  
  .footer-waves {
    height: 40px;
  }
  
  .footer-logo img {
    height: 32px;
  }
  
  .footer-tagline {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-brand {
    margin-bottom: -160px;
  }
  
  .footer-links-section {
    gap: 30px;
  }
  
  .footer-links-wrapper {
    gap: 30px;
  }
  
  .footer-links-group {
    text-align: center;
  }
  
  .footer-title {
    font-size: 16px;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
  }
  
  .footer-links a {
    padding: 8px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .footer-links a:hover {
    padding-left: 0;
    background-color: rgba(255, 255, 255, 0.03);
  }
  
  .footer-links a::before {
    display: none;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .btn-outline-light {
    margin: 15px auto 0;
    padding: 10px 20px;
    width: 80%;
    max-width: 200px;
  }
  
  .footer-bottom {
    margin-top: 40px;
  }
  
  .footer-copyright p, 
  .footer-credit {
    font-size: 12px;
  }
  
  .language-selector {
    margin: 15px 0;
  }
  
  .language-selector select {
    width: 150px;
    text-align: center;
    padding: 8px 12px;
  }
}

@media (max-width: 375px) {
  .footer-social-link {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
  
  .footer-links a {
    font-size: 14px;
  }
  
  .contact-item {
    font-size: 13px;
  }
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--white);
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  padding: 40px;
  position: relative;
  transform: translateY(-50px);
  transition: all 0.3s ease;
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  transition: var(--transition);
}

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

.modal-title {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
}

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

.form-footer p {
  margin-top: 15px;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .nav-list {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    transition: var(--transition);
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }

  .nav-list.active {
    left: 0;
  }

  .nav-item {
    margin: 15px 0;
  }

  .menu-toggle {
    display: block;
  }

  .auth-buttons {
    margin-right: 60px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .countdown-digit {
    width: 40px;
    height: 60px;
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .countdown-digit {
    width: 35px;
    height: 50px;
    font-size: 24px;
  }

  .countdown-label {
    font-size: 12px;
  }

  .cta-buttons .btn {
    padding: 12px 25px;
    font-size: 16px;
    margin: 5px;
  }
  
  .feature-card {
    flex: 1 1 100%;
  }
  
  .step {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .auth-buttons {
    margin-right: 50px;
  }
  
  .btn {
    padding: 8px 20px;
    font-size: 14px;
  }
  
  .countdown-item {
    margin: 0 8px;
  }
  
  .countdown-digit {
    width: 30px;
    height: 40px;
    font-size: 20px;
  }
  
  .countdown-label {
    font-size: 10px;
  }
  
  .cta-buttons .btn {
    width: 80%;
    margin: 5px auto;
    display: block;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .feature-title, .step-title {
    font-size: 20px;
  }
  
  .modal-content {
    padding: 30px 20px;
    width: 90%;
  }
}

/* Premium Experience */
.premium-experience {
  padding: 120px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.premium-experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(0, 166, 153, 0.03) 0%, transparent 70%),
              radial-gradient(circle at 10% 90%, rgba(255, 90, 95, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.premium-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 60px 0;
}

.premium-card {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.05) 0%, rgba(0, 166, 153, 0.05) 100%);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.premium-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.premium-card:hover::before {
  opacity: 1;
}

.premium-card-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: rgba(255, 90, 95, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: var(--transition);
}

.premium-card-icon i {
  font-size: 40px;
  color: var(--primary-color);
  transition: var(--transition);
}

.premium-card:hover .premium-card-icon {
  background-color: var(--primary-color);
  transform: rotateY(180deg);
}

.premium-card:hover .premium-card-icon i {
  color: var(--white);
  transform: rotateY(180deg);
}

.premium-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
  transition: var(--transition);
}

.premium-card:hover .premium-card-title {
  color: var(--primary-color);
}

.premium-card-text {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

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

@media (max-width: 991px) {
  .premium-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .premium-gallery {
    grid-template-columns: 1fr;
  }
}

.premium-gallery-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.premium-gallery-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.premium-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.premium-gallery-image:hover img {
  transform: scale(1.1);
}

.premium-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.premium-gallery-image:hover .premium-gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.premium-gallery-overlay p {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.premium-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-large {
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 600;
}

/* Instagram Section */
.instagram-section {
  padding: 120px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.instagram-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(193, 53, 132, 0.05) 0%, transparent 70%),
              radial-gradient(circle at 10% 90%, rgba(225, 48, 108, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.instagram-feed-container {
  margin-top: 60px;
  position: relative;
}

.instagram-overlay {
  text-align: center;
  margin-bottom: 40px;
}

.instagram-logo-container {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.instagram-logo-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  z-index: 1;
}

.instagram-logo-container i {
  font-size: 40px;
  color: white;
  z-index: 2;
}

.instagram-slogan {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.instagram-description {
  font-size: 16px;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .instagram-grid {
    grid-template-columns: 1fr;
  }
}

.instagram-post {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.instagram-post-inner {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.instagram-post-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    #f9f9f9 0%, 
    #eaeaea 25%, 
    #f9f9f9 50%, 
    #eaeaea 75%, 
    #f9f9f9 100%);
  background-size: 400% 400%;
  animation: gradient 2s ease infinite;
}

.instagram-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-post:hover .instagram-post-image {
  transform: scale(1.1);
}

.instagram-post-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-post-hover {
  opacity: 1;
}

.instagram-post-hover i {
  color: white;
  font-size: 32px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.instagram-post:hover .instagram-post-hover i {
  transform: scale(1);
}

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

.instagram-cta .btn {
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(255, 90, 95, 0.2);
  transition: all 0.3s ease;
}

.instagram-cta .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 90, 95, 0.3);
}

.instagram-cta .btn i {
  font-size: 22px;
  margin-right: 10px;
}

/* Add animation for Instagram section */
.instagram-logo-container, .instagram-slogan, .instagram-description {
  animation: fadeInUp 1s both;
}

.instagram-logo-container {
  animation-delay: 0.2s;
}

.instagram-slogan {
  animation-delay: 0.4s;
}

.instagram-description {
  animation-delay: 0.6s;
}

.instagram-post {
  animation: fadeInUp 0.8s both;
}

.instagram-post:nth-child(1) {
  animation-delay: 0.8s;
}

.instagram-post:nth-child(2) {
  animation-delay: 0.9s;
}

.instagram-post:nth-child(3) {
  animation-delay: 1s;
}

.instagram-post:nth-child(4) {
  animation-delay: 1.1s;
}

.instagram-post:nth-child(5) {
  animation-delay: 1.2s;
}

.instagram-post:nth-child(6) {
  animation-delay: 1.3s;
}

.instagram-cta {
  animation: fadeInUp 1s both;
  animation-delay: 1.4s;
}

/* Modern Mobile Menu Styles */
.desktop-only {
  display: flex;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--white) 0%, #f9f9f9 100%);
  z-index: 999;
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  border-radius: 0 0 0 20px;
  padding-bottom: 30px;
}

.mobile-menu-panel.active {
  transform: translateX(-100%);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background-color: var(--white);
}

.mobile-logo {
  height: 36px;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--dark-color);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: #f5f5f5;
}

.mobile-menu-close:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: rotate(90deg);
}

.mobile-menu-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

/* Vertical Auth Buttons - Fixed */
.mobile-auth-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  padding: 5px;
  width: 100%;
}

.mobile-auth-btn {
  width: 100%;
  padding: 14px 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.mobile-auth-btn i {
  margin-right: 8px;
  font-size: 16px;
}

.mobile-login {
  color: var(--dark-color);
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-login:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.mobile-register {
  color: var(--white);
  background: var(--gradient-primary);
  box-shadow: 0 4px 10px rgba(255, 90, 95, 0.3);
}

.mobile-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 90, 95, 0.4);
  color: var(--white);
}

/* Styled mobile nav list */
.mobile-nav-list {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.mobile-nav-item {
  margin-bottom: 0;
}

.mobile-nav-link {
  width: 100%;
  box-sizing: border-box;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-color);
  padding: 14px 16px;
  border-radius: 12px;
  transition: all 0.25s ease;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.mobile-nav-link i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-right: 14px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.mobile-nav-link span {
  flex: 1;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 90, 95, 0.1);
}

.mobile-nav-link:hover i, .mobile-nav-link.active i {
  transform: scale(1.2);
  color: var(--primary-color);
}

/* Mobile menu footer */
.mobile-menu-footer {
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  width: 100%;
}

.mobile-tagline {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.mobile-tagline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 10px;
}

.mobile-social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.mobile-social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.mobile-social-link:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(255, 90, 95, 0.2);
}

/* Mobile menu toggle button */
.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  box-shadow: 0 4px 10px rgba(255, 90, 95, 0.3);
}

.menu-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 90, 95, 0.4);
}

/* Responsive Menu Changes */
@media (max-width: 992px) {
  .desktop-only {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-list {
    display: none;
  }
  
  .header-container {
    padding: 10px 15px;
  }
}

/* Ripple effect for menu items */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  transform: scale(0);
  animation: ripple 0.6s linear;
  z-index: 0;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Pulse animation for register button */
.pulse-once {
  animation: pulse-animation 1s ease-out;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 90, 95, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 90, 95, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 90, 95, 0);
  }
}

/* Bounce animation for menu toggle */
.menu-toggle.clicked {
  animation: bounce 0.3s ease-in-out;
}

@keyframes bounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
}

/* Mobile nav link position relative for ripple */
.mobile-nav-link {
  position: relative;
  overflow: hidden;
}

/* Social App Buttons */
.social-app-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0 30px;
  width: 100%;
}

.social-app-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  gap: 8px;
}

.social-app-btn i {
  font-size: 18px;
}

.social-app-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  color: var(--white);
}

.facebook-btn {
  background-color: #3b5998;
}

.linkedin-btn {
  background-color: #0077b5;
}

.twitter-btn {
  background-color: #1da1f2;
}

.instagram-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.whatsapp-btn {
  background-color: #25d366;
}

/* Media Queries for Smaller Screens */
@media (max-width: 360px) {
  .mobile-menu-panel {
    width: 95%;
  }
  
  .social-app-buttons {
    grid-template-columns: 1fr;
  }
  
  .mobile-auth-btn {
    padding: 12px 10px;
    font-size: 14px;
  }
  
  .mobile-auth-btn i {
    font-size: 14px;
  }
}

/* Compact Authentication Buttons (Desktop) */
.compact-auth-container {
  display: flex;
  align-items: center;
  background-color: rgba(248, 248, 248, 0.9);
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.compact-auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.compact-auth-btn i {
  margin-right: 6px;
  font-size: 14px;
}

.compact-auth-btn span {
  line-height: 1;
}

.login-btn {
  color: var(--dark-color);
}

.login-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--primary-color);
}

.register-btn {
  background: var(--gradient-primary);
  color: var(--white);
  margin-left: 4px;
  box-shadow: 0 2px 6px rgba(255, 90, 95, 0.25);
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 90, 95, 0.35);
  color: var(--white);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 90, 95, 0.3);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top i {
  font-size: 20px;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 90, 95, 0.4);
}

.back-to-top:hover i {
  animation: bounce-up 1s infinite;
}

.back-to-top.clicked {
  transform: scale(0.9);
  transition: transform 0.2s ease;
}

@keyframes bounce-up {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* Add pulse effect on hover */
.back-to-top::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gradient-primary);
  z-index: -1;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.back-to-top:hover::before {
  animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* About Page Styles */
.about-hero {
  padding: 180px 0 100px;
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../img/about-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 90, 95, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Story Section */
.about-story {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-story-container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-story-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.about-story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: floatBadge 4s infinite alternate ease-in-out;
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text span {
  font-weight: 700;
  font-size: 16px;
  color: var(--dark-color);
}

.badge-text small {
  font-size: 12px;
  color: #777;
}

.about-story-content {
  flex: 1;
  min-width: 300px;
}

.about-paragraph {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.about-quote {
  display: flex;
  align-items: flex-start;
  margin: 30px 0;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.02);
  border-left: 3px solid var(--primary-color);
  border-radius: 0 8px 8px 0;
}

.about-quote i {
  font-size: 24px;
  color: var(--primary-color);
  opacity: 0.5;
  margin-right: 15px;
  margin-top: 5px;
}

.about-quote p {
  font-size: 16px;
  font-style: italic;
  color: #666;
  font-weight: 500;
  margin: 0;
}

.about-cta {
  margin-top: 30px;
}

/* About Mission Section */
.about-mission {
  padding: 100px 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.about-mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(0, 166, 153, 0.05) 0%, transparent 70%),
              radial-gradient(circle at 10% 90%, rgba(255, 90, 95, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-mission-container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-mission-content {
  flex: 1;
  min-width: 300px;
}

.about-features {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature .feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 12px;
  background: rgba(255, 90, 95, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 24px;
  transition: var(--transition);
}

.about-feature:hover .feature-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: rotateY(180deg);
}

.feature-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.feature-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.about-mission-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.about-mission-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-company-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 250px;
  animation: floatBadge 4s infinite alternate ease-in-out;
}

.company-logo {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.company-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.company-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-color);
  margin: 0;
}

/* About Team Section */
.about-team {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(0, 166, 153, 0.03) 0%, transparent 70%),
              radial-gradient(circle at 10% 90%, rgba(255, 90, 95, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

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

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.team-member {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
  position: relative;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  justify-content: center;
  gap: 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.team-member:hover .member-social {
  transform: translateY(0);
}

.member-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transition: var(--transition);
}

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

.member-info {
  padding: 20px;
  text-align: center;
}

.member-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.member-info p {
  font-size: 14px;
  color: var(--primary-color);
  margin: 0;
}

/* Join Us Section */
.join-us {
  padding: 100px 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.join-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(0, 166, 153, 0.05) 0%, transparent 70%),
              radial-gradient(circle at 10% 90%, rgba(255, 90, 95, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.join-us-container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.join-us-content {
  flex: 1;
  min-width: 300px;
}

.join-us-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.join-us-text {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}

.join-us-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.join-us-image {
  flex: 1;
  min-width: 300px;
}

.join-us-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s ease;
}

.join-us:hover .join-us-image img {
  transform: scale(1.02);
}

/* Responsive Styles for About Page */
@media (max-width: 991px) {
  .about-story-container,
  .about-mission-container,
  .join-us-container {
    flex-direction: column;
  }
  
  .about-story-image,
  .about-mission-image,
  .join-us-image {
    margin-bottom: 40px;
  }
  
  .about-mission-container {
    flex-direction: column-reverse;
  }
  
  .about-hero-title {
    font-size: 36px;
  }
  
  .team-members {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 150px 0 80px;
  }
  
  .about-story,
  .about-mission,
  .about-team,
  .join-us {
    padding: 80px 0;
  }
  
  .about-hero-title {
    font-size: 32px;
  }
  
  .about-hero-subtitle {
    font-size: 18px;
  }
  
  .experience-badge,
  .about-company-badge {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    margin-top: -50px;
    margin-bottom: 30px;
    max-width: 100%;
    z-index: 2;
  }
  
  .team-members {
    grid-template-columns: 1fr;
  }
  
  .join-us-title {
    font-size: 32px;
  }
  
  .join-us-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .about-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .about-feature .feature-icon {
    margin-bottom: 15px;
  }
  
  .join-us-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .join-us-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

/* Stats Cards */
.stats-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  justify-content: space-between;
}

.stat-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 220px;
  background-color: var(--white);
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  z-index: -1;
  transition: height 0.3s ease;
  opacity: 0.8;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-card:hover::before {
  height: 100%;
  opacity: 0.05;
}

.stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 90, 95, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 28px;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: rotateY(180deg);
}

.stat-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
  transition: all 0.3s ease;
}

.stat-card:hover .stat-title {
  color: var(--primary-color);
}

.stat-text {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .stats-cards {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-card {
    width: 100%;
  }
}