/* Modern About and Locations Section Styles */

/* ================= About Section ================= */
.about-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative Elements */
.about-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(240, 87, 37, 0.05);
  border-radius: 50%;
  top: -150px;
  left: -150px;
  z-index: 1;
}

.about-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(240, 87, 37, 0.05);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  z-index: 1;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* About Text Styling */
.about-text {
  padding-right: 40px;
  transform: translateX(-20px);
  opacity: 0;
  animation: fadeInRight 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-text h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  color: var(--dark);
  font-family: 'Playfair Display', serif;
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--primary);
  bottom: -10px;
  left: 0;
  transform-origin: left;
  transform: scaleX(0);
  animation: growLine 0.6s ease-out forwards;
  animation-delay: 1s;
}

@keyframes growLine {
  to {
    transform: scaleX(1);
  }
}

.about-text p {
  color: #667080;
  line-height: 1.9;
  margin-bottom: 25px;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.6s;
}

.about-text p:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Highlights */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 1s;
}

.highlight-item {
  text-align: center;
  padding: 35px 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(135deg, rgba(240, 87, 37, 0.1) 0%, rgba(240, 87, 37, 0.05) 100%);
  z-index: -1;
  transition: height 0.4s ease;
  border-radius: 16px;
}

.highlight-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.highlight-item:hover::before {
  height: 100%;
}

.highlight-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.highlight-item:hover i {
  transform: scale(1.15);
}

.highlight-item h3 {
  font-size: 2.8rem;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.highlight-item p {
  color: #667080;
  font-size: 1.05rem;
  margin: 0;
  font-weight: 500;
}

/* About Image */
.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  transform: translateX(20px);
  opacity: 0;
  animation: fadeInLeft 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: brightness(1.02);
}

.about-image:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  left: -25px;
  background: var(--primary);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(240, 87, 37, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: pulse 2s infinite;
  transform: scale(0);
  animation: scaleIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 1.2s;
}

@keyframes scaleIn {
  to {
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(240, 87, 37, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(240, 87, 37, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(240, 87, 37, 0);
  }
}

.experience-badge .years {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
}

/* ================= Locations Section ================= */
.locations-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative elements */
.locations-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(240, 87, 37, 0.03);
  border-radius: 50%;
  top: -200px;
  right: -200px;
}

.locations-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(240, 87, 37, 0.03);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
}

.locations-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

.primary-locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.location-card.featured {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.location-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 0;
  background: var(--primary);
  transition: height 0.4s ease;
  z-index: -1;
}

.location-card.featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.location-card.featured:hover::before {
  height: 100%;
}

.location-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(240, 87, 37, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.location-card.featured:hover .location-icon {
  background: var(--primary);
}

.location-icon i {
  font-size: 28px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.location-card.featured:hover .location-icon i {
  color: white;
}

.location-content h3 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.location-content p {
  color: #667080;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.location-areas {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-areas li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #555;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.location-areas li::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary);
  font-size: 16px;
}

.location-card.featured:hover .location-areas li {
  transform: translateX(5px);
}

.secondary-locations {
  margin-top: 60px;
  text-align: center;
  position: relative;
}

.secondary-locations::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 2px;
  background: var(--primary);
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.location-item {
  background: #ffffff;
  padding: 20px 15px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.location-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  background: var(--primary);
}

.location-item i {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.location-item:hover i {
  color: #ffffff;
}

.location-item span {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
  transition: all 0.3s ease;
}

.location-item:hover span {
  color: #ffffff;
}

.location-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-item i {
  font-size: 20px;
  color: var(--primary);
}

.info-item span {
  font-size: 1rem;
  color: #667080;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .about-content,
  .primary-locations {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .about-text {
    padding-right: 0;
    order: 2;
  }
  
  .about-image {
    order: 1;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .primary-locations {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .location-card.featured {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-section,
  .locations-section {
    padding: 80px 0;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
  }
  
  .about-highlights {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .location-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .location-info {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .about-section,
  .locations-section {
    padding: 60px 0;
  }
  
  .about-text h2 {
    font-size: 2.2rem;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
  }
  
  .highlight-item {
    padding: 25px 15px;
  }
  
  .highlight-item h3 {
    font-size: 2.2rem;
  }
  
  .location-card.featured {
    padding: 30px 20px;
  }
  
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
} 