/* About Page Styles */

/* Hero Section */
.about-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #2563eb, #1e40af, #3b82f6);
    background-size: 300% 300%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 2rem;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    position: relative;
    isolation: isolate;
    animation: gradientFlow 15s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
    mix-blend-mode: overlay;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/image1.png') center/cover;
    opacity: 0.1;
    animation: subtle-zoom 20s infinite alternate ease-in-out;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.about-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: textReveal 1s ease-out forwards;
    opacity: 0;
    filter: blur(10px);
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.highlight {
    background: linear-gradient(120deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.3) 100%);
    padding: 0.2em 0.4em;
    border-radius: 8px;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.highlight::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.about-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* Mission Section */
.mission-section {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.4s ease;
    animation: float 6s infinite ease-in-out;
}

.stat-item:nth-child(2) {
    animation-delay: 1s;
}

.stat-item:nth-child(3) {
    animation-delay: 2s;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    color: var(--light-text);
    font-size: 0.9rem;
}

.mission-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
}

.mission-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 50%);
    transform: rotate(45deg);
    animation: glassyShine 8s infinite linear;
    pointer-events: none;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 16px;
}

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

@keyframes glassyShine {
    0% {
        transform: rotate(45deg) translateY(0%);
    }
    100% {
        transform: rotate(45deg) translateY(100%);
    }
}

/* Values Section */
.values-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transition: 0.5s;
}

.value-card:hover {
    transform: translateY(-20px) scale(1.02) rotateX(10deg);
    box-shadow: 0 30px 50px rgba(0,0,0,0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.value-card:hover::before {
    left: 100%;
    transition: 0.7s;
}

.value-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(37, 99, 235, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.value-card:hover::after {
    opacity: 1;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.value-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 8rem 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(37, 99, 235, 0.05),
        transparent
    );
    animation: gradientMove 8s linear infinite;
    background-size: 200% 200%;
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.team-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 45px rgba(0,0,0,0.1);
}

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

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

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

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.position {
    color: var(--primary-color);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

/* Impact Section */
.impact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: gradientShift 15s infinite alternate;
}

@keyframes gradientShift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(10px, 10px) scale(1.1);
    }
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.impact-story {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.impact-story::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.impact-story:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.impact-story:hover::before {
    opacity: 1;
}

.story-image {
    height: 200px;
    overflow: hidden;
}

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

.impact-story:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.client-name {
    display: block;
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

@keyframes subtle-zoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero h1 {
        font-size: 3rem;
    }

    .mission-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .value-card,
    .team-card {
        padding: 1.5rem;
    }
}

.about-card-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(59,130,246,0.05) 0%, rgba(30,64,175,0.03) 100%);
}

.about-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  max-width: 950px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

@media (max-width: 768px) {
  .about-card-section {
    padding: 40px 15px;
  }

  .about-card {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .about-card h2 {
    font-size: 1.8rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
  }

  .about-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
    border-radius: 3px;
  }

  .about-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: left;
  }

  .about-card p:last-child {
    margin-bottom: 0;
  }
}

.about-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.about-card-header {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  text-align: center;
}

.about-badge {
  display: inline-block;
  background: #007bff;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.about-card h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.about-card-body {
  position: relative;
  z-index: 1;
}

.about-card-body p {
  margin-bottom: 18px;
  line-height: 1.8;
  color: #555;
  font-size: 1.05rem;
  text-align: justify;
}

.about-card-body strong {
  color: #007bff;
}

/* Compact Reviews Section */
.reviews-compact {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.reviews-slider {
    position: relative;
    width: 100%;
    padding: 20px 0;
    margin-top: 20px;
}

.review-track {
    display: flex;
    gap: 20px;
    animation: slideTrack 30s linear infinite;
    width: max-content;
}

.review-track:hover {
    animation-play-state: paused;
}

@keyframes slideTrack {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.review-pill {
    background: white;
    padding: 20px 25px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.review-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-pill:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
}

.review-pill:hover::before {
    opacity: 1;
}

.review-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 8px;
}

.review-pill p {
    font-size: 0.95rem;
    color: #1f2937;
    margin: 0 0 8px;
    font-style: italic;
}

.review-pill span {
    font-size: 0.85rem;
    color: #6b7280;
    display: block;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

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

.review-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-card blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1f2937;
    margin: 0 0 20px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--accent-2);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    padding-top: 15px;
}

.reviewer-info h4 {
    margin: 0;
    color: #1e40af;
    font-size: 1.1rem;
    font-weight: 700;
}

.reviewer-info span {
    color: #6b7280;
    font-size: 0.9rem;
    display: block;
    margin-top: 4px;
}

/* Modern Compact Locations Section */
.locations-compact {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(59,130,246,0.05) 0%, rgba(30,64,175,0.03) 100%);
    position: relative;
    overflow: hidden;
}

.locations-compact::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, rgba(59,130,246,0) 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    z-index: 1;
}

.locations-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(59,130,246,0.1);
}

.location-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(59, 130, 246, 0.1);
    padding-bottom: 20px;
    justify-content: center;
}

.tab-btn {
    background: none;
    border: 1px solid rgba(59, 130, 246, 0.15);
    padding: 12px 24px;
    border-radius: 16px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    min-width: 140px;
    justify-content: center;
}

.tab-btn:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-2px);
}

.tab-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.tab-btn:hover i {
    transform: scale(1.1);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    color: white;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
    border-color: transparent;
}

.location-content {
    display: none;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    background: rgba(59, 130, 246, 0.02);
    border-radius: 16px;
}

.location-content.active {
    display: block;
}

.location-info {
    margin-bottom: 25px;
    text-align: center;
    padding: 0 20px;
}

.location-info h3 {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.location-info p {
    color: #6b7280;
    font-size: 1rem;
}

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

.location-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 15px;
    justify-content: center;
}

.location-pill {
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    color: #1e40af;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59, 130, 246, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.05);
}

.location-pill i {
    font-size: 0.85rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.location-pill:hover {
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.location-pill:hover i {
    color: white;
    transform: scale(1.1);
}

.location-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.location-card h3 {
    color: #1e40af;
    margin: 0 0 20px;
    font-size: 1.3rem;
    font-weight: 700;
}

.location-areas {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #6b7280;
}

.location-areas li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    
}

.location-areas li:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.location-areas li:last-child {
    border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

    .review-card {
        padding: 20px;
    }

    .review-card blockquote {
        font-size: 1rem;
    }
}
