* {
  margin: 0;
  padding: -3;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1e293b;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero Section */
.about-hero {
  position: relative;
  padding: 5rem 1rem;
  text-align: center;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: #000000cf;
  /* background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #48dbfb 100%); */
}

.about-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(255, 107, 107, 0.8), rgba(254, 202, 87, 0.8), rgba(72, 219, 251, 0.8)); */
}

.about-hero-content {
  position: relative;
  z-index: 10;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  color: #7c3aed;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.about-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Floating Shapes */
.about-floating-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff9a9e, #fecfef);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #a8edea, #fed6e3);
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ffecd2, #fcb69f);
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Icons */
.about-icon {
  width: 1rem;
  height: 1rem;
}

.about-icon-large {
  width: 2rem;
  height: 2rem;
  color: white;
}

.about-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.about-mission-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.about-journey-icon {
  /* background: linear-gradient(135deg, #f093fb, #f5576c); */
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.about-feature-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.about-feature-icon {
  width: 2rem;
  height: 2rem;
  color: white;
}

/* Cards */
.card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
}

.about-mission-card {
  border-radius: 12px;
  /* border: 3px solid transparent; */
  background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #667eea, #764ba2) border-box;
}

.about-journey-card {
  border-radius: 12px;
  /* border: 3px solid transparent; */
  background: linear-gradient(white, white) padding-box, linear-gradient(135deg, rgb(102, 126, 234)) border-box;
}

/* Mission Section */
.about-mission {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.about-mission-content {
  padding: 3rem;
}

.about-section-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.about-section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  background: #2495a9;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-mission-text {
  font-size: 1.125rem;
  /* color: #475569; */
  line-height: 1.8;
}

.about-mission-image {
  height: 20rem;
  position: relative;
}

.about-mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3)); */
}

/* Features Section */
.about-features {
  padding: 5rem 1rem;
  /* background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 50%, #fd79a8 100%); */
}

.about-section-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.about-section-intro h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: black;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-section-intro p {
  color: black;
  max-width: 32rem;
  margin: 0 auto;
  font-size: 1.125rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.about-feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.about-excellence-card .about-feature-icon-wrapper {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.about-excellence-card::before {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.about-team-card .about-feature-icon-wrapper {
  background: linear-gradient(135deg, #4834d4, #686de0);
}

.about-team-card::before {
  background: linear-gradient(135deg, #4834d4, #686de0);
}

.about-solutions-card .about-feature-icon-wrapper {
  background: linear-gradient(135deg, #00d2d3, #54a0ff);
}

.about-solutions-card::before {
  background: linear-gradient(135deg, #00d2d3, #54a0ff);
}

.about-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.about-feature-card p {
  /* color: #64748b; */
  line-height: 1.6;
}

/* Journey Section */
.about-journey {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

.about-journey-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.about-journey-image {
  height: 20rem;
  position: relative;
}

.about-journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-journey-overlay {
  /* background: linear-gradient(135deg, rgba(240, 147, 251, 0.3), rgba(245, 87, 108, 0.3)); */
}

.about-journey-content {
  padding: 3rem;
}

.about-journey-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.about-journey-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  /* background: linear-gradient(135deg, #f093fb, #f5576c); */
  background: #2495a9;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-journey-text {
  font-size: 1.125rem;
  /* color: #475569; */
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-journey-text:last-child {
  margin-bottom: 0;
}

/* Gallery Section */
.about-gallery {
  padding: 5rem 1rem;
  /* background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%); */
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.about-gallery-item {
  height: 15rem;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-gallery-overlay h4 {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
}

.about-gallery-item:hover img {
  transform: scale(1.1);
}

.about-gallery-item:hover .about-gallery-overlay {
  opacity: 1;
}

.about-mountain-item:hover .about-gallery-overlay {
  background: linear-gradient(to top, rgba(76, 175, 80, 0.8), transparent);
}

.about-beach-item:hover .about-gallery-overlay {
  background: linear-gradient(to top, rgba(33, 150, 243, 0.8), transparent);
}

.about-city-item:hover .about-gallery-overlay {
  background: linear-gradient(to top, rgba(156, 39, 176, 0.8), transparent);
}

.about-culture-item:hover .about-gallery-overlay {
  background: linear-gradient(to top, rgba(255, 152, 0, 0.8), transparent);
}

/* CTA Section */
.about-cta {
  position: relative;
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  overflow: hidden;
}

.about-cta-background {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.about-cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cta-content {
  position: relative;
  z-index: 10;
}

.about-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-cta p {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.about-cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-cta-shape {
  position: absolute;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.about-cta-shape-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.about-cta-shape-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  bottom: 15%;
  left: 15%;
  animation-delay: 3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #667eea;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .about-mission-grid,
  .about-journey-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-mission-image,
  .about-journey-image {
    height: auto;
  }

  .about-mission-image img {
    border-radius: 0 1rem 1rem 0;
  }

  .about-journey-image img {
    border-radius: 1rem 0 0 1rem;
  }

  .about-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .about-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-hero {
    padding: 6rem 1rem;
  }

  .about-mission,
  .about-features,
  .about-journey,
  .about-gallery {
    padding: 6rem 1rem;
  }

  .about-cta {
    padding: 8rem 1rem;
  }
}
