.about {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e67c45 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.experience-badge .years {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    margin-top: 5px;
    line-height: 1.2;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.feature:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a5a70 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

.achievement-badge {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--white) 0%, #f1f5f9 100%);
    padding: 1.5rem 2rem;
    border-radius: 50px;
    width: fit-content;
}

.achievement-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 1rem;
}

.paw-icon {
    margin-right: 1rem;
}

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

.achievement-text {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 1rem;
        top: -15px;
        right: -10px;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.7rem;
    }
    
    .feature {
        padding: 1rem;
        gap: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .achievement-badge {
        padding: 1rem 1.5rem;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
}
.about-carousel-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

.carousel-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.carousel-header h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.carousel-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    height: 500px;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    pointer-events: none;
}

.carousel-prev,
.carousel-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.carousel-prev:hover i,
.carousel-next:hover i {
    color: var(--white);
}

.carousel-prev i,
.carousel-next i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.carousel-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: var(--white);
}

.indicator:hover {
    background: var(--white);
    transform: scale(1.1);
}

@keyframes slideAnimation {
    0% { transform: translateX(0); }
    20% { transform: translateX(0); }
    25% { transform: translateX(-100%); }
    45% { transform: translateX(-100%); }
    50% { transform: translateX(-200%); }
    70% { transform: translateX(-200%); }
    75% { transform: translateX(-300%); }
    95% { transform: translateX(-300%); }
    100% { transform: translateX(-400%); }
}

.carousel-track.auto-play {
    animation: slideAnimation 25s infinite;
}

@media (max-width: 1024px) {
    .carousel-track {
        height: 400px;
    }
    
    .carousel-container {
        max-width: 900px;
    }
    
    .slide-caption {
        font-size: 1.2rem;
        padding: 1.5rem 1rem 1rem;
    }
}

@media (max-width: 768px) {
    .about-carousel-section {
        margin-top: 3rem;
        padding: 2rem 0;
    }
    
    .carousel-header {
        margin-bottom: 2rem;
    }
    
    .carousel-header h3 {
        font-size: 1.7rem;
    }
    
    .carousel-header p {
        font-size: 1rem;
    }
    
    .carousel-track {
        height: 350px;
    }
    
    .carousel-container {
        border-radius: 15px;
    }
    
    .slide-caption {
        font-size: 1.1rem;
        padding: 1.2rem 0.8rem 0.8rem;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-controls {
        padding: 0 1rem;
    }
}

@media (max-width: 640px) {
    .carousel-track {
        height: 300px;
    }
    
    .slide-caption {
        font-size: 1rem;
        padding: 1rem 0.5rem 0.5rem;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev i,
    .carousel-next i {
        font-size: 1rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .about-carousel-section {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
    
    .carousel-header h3 {
        font-size: 1.5rem;
    }
    
    .carousel-header p {
        font-size: 0.9rem;
    }
    
    .carousel-track {
        height: 250px;
    }
    
    .carousel-container {
        border-radius: 12px;
    }
    
    .slide-caption {
        font-size: 0.9rem;
    }
    
    .carousel-indicators {
        bottom: 1rem;
    }
}
.about {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e67c45 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.experience-badge .years {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    margin-top: 5px;
    line-height: 1.2;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.feature:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a5a70 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

.achievement-badge {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--white) 0%, #f1f5f9 100%);
    padding: 1.5rem 2rem;
    border-radius: 50px;
    width: fit-content;
}

.achievement-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 1rem;
}

.paw-icon {
    margin-right: 1rem;
}

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

.achievement-text {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.about-carousel-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

.carousel-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.carousel-header h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.carousel-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-with-map {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.carousel-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    background: var(--white);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 400px;
    width: 400px;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.carousel-prev,
.carousel-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.carousel-prev:hover i,
.carousel-next:hover i {
    color: var(--white);
}

.carousel-prev i,
.carousel-next i {
    color: var(--secondary-color);
    font-size: 1rem;
    transition: color 0.3s ease;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: var(--white);
}

.indicator:hover {
    background: var(--white);
    transform: scale(1.1);
}

/* Map Side */
.map-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.clinic-map {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.map-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.map-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.map-header p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.map-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.map-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.map-legend {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--dark-color);
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.legend-color.reception {
    background: #4CAF50;
}

.legend-color.consultation {
    background: #2196F3;
}

.legend-color.surgery {
    background: #FF9800;
}

.legend-color.hospitalization {
    background: #9C27B0;
}

.legend-color.lab {
    background: #F44336;
}

.map-features h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.map-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.map-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--dark-color);
}

.map-features li i {
    color: var(--primary-color);
    font-size: 0.7rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .carousel-with-map {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .carousel-track {
        height: 350px;
    }
    
    .map-image img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experience-badge {
        width: 70px;
        height: 70px;
        padding: 1rem;
        top: -15px;
        right: -10px;
    }
    
    .experience-badge .years {
        font-size: 1.7cqb;
    }
    
    .experience-badge .text {
        font-size: 0.6rem;
    }
    
    .feature {
        padding: 1rem;
        gap: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .achievement-badge {
        padding: 1rem 1.5rem;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
    
    .about-carousel-section {
        margin-top: 3rem;
        padding: 2rem 0;
    }
    
    .carousel-header {
        margin-bottom: 2rem;
    }
    
    .carousel-header h3 {
        font-size: 1.7rem;
    }
    
    .carousel-header p {
        font-size: 1rem;
    }
    
    .carousel-track {
        height: 300px;
    }
    
    .carousel-container {
        border-radius: 12px;
    }
    
    .slide-caption {
        font-size: 1rem;
        padding: 1.2rem;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-controls {
        padding: 0 0.8rem;
    }
    
    .clinic-map {
        padding: 1.5rem;
    }
    
    .map-header h4 {
        font-size: 1.2rem;
    }
    
    .map-image img {
        height: 160px;
    }
    
    .map-legend {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .carousel-track {
        height: 250px;
    }
    
    .slide-caption {
        font-size: 0.9rem;
        padding: 1rem;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 36px;
        height: 36px;
    }
    
    .carousel-prev i,
    .carousel-next i {
        font-size: 0.9rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .clinic-map {
        padding: 1.2rem;
    }
    
    .map-header h4 {
        font-size: 1.1rem;
    }
    
    .map-image img {
        height: 140px;
    }
    
    .map-features h5 {
        font-size: 0.95rem;
    }
    
    .map-features li {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .about-carousel-section {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
    
    .carousel-header h3 {
        font-size: 1.5rem;
    }
    
    .carousel-header p {
        font-size: 0.9rem;
    }
    
    .carousel-track {
        height: 200px;
    }
    
    .carousel-container {
        border-radius: 10px;
    }
    
    .slide-caption {
        font-size: 0.85rem;
    }
    
    .carousel-indicators {
        bottom: 0.8rem;
    }
    
    .clinic-map {
        padding: 1rem;
    }
    
    .map-header h4 {
        font-size: 1rem;
    }
    
    .map-image img {
        height: 120px;
    }
}